Represents the HTTP response line status.
strValue = oXMLHttpRequest.statusText;
var xmlServerHttp = new ActiveXObject("Msxml2.ServerXMLHTTP.5.0"); xmlServerHttp.open("GET", "http://localhost/sample.xml", false); xmlServerHttp.send(); alert(xmlServerHttp.statusText);
strValue = oXMLHttpRequest.statusText
Dim xmlServerHttp As New Msxml2.ServerXMLHTTP50 xmlServerHttp.open "GET", "http://localhost/sample.xml", False xmlServerHttp.send MsgBox xmlServerHttp.statusText
HRESULT get_statusText(BSTR* pbstrStatus);
The results of this method are valid only after the send
method has been successfully completed.
To view reference information for Visual Basic, C/C++, or Script only, click the Language Filter button in the upper-left corner of the page.
Applies to: IServerXMLHTTPRequest/ServerXMLHTTP