Represents the HTTP response line status.
strValue = oXMLHttpRequest.statusText;
var xmlhttp = new ActiveXObject("Msxml2.XMLHTTP.5.0"); xmlhttp.open("GET", "http://localhost/sample.xml", false); xmlhttp.send(); alert(xmlhttp.statusText);
strValue = oXMLHttpRequest.statusText
Dim xmlhttp As New Msxml2.XMLHTTP50 xmlhttp.open "GET", "http://localhost/sample.xml", False xmlhttp.send MsgBox xmlhttp.Status
HRESULT get_statusText(BSTR* pbstrStatus);
String. The property is read-only. It represents the HTTP response as a BSTR value. This value is valid only after the send
method returns successfully.
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: IXMLHTTPRequest