onreadystatechange Property (ServerXMLHTTP-IServerXMLHTTPRequest)
Specifies the event handler to be invoked when the readyState
property changes. Note that onreadystatechange
is designed for use in scripting environments and is not readily accessible in Microsoft® Visual Basic® or C++.
Script Syntax
oServerXMLHTTPRequest.onreadystatechange = funcMyHandler;
Visual Basic Syntax
See Use OnReadyStateChange Property in Visual Basic and Visual C/C++.
C/C++ Syntax
HRESULT put_onreadystatechange(VARIANT* readystatechangeSink);
Parameters
readystatechangeSink
[in]
Name of the function that should be called when the readyState
property value changes.
C/C++ Return Values
S_OK
Value returned if successful.
Example
See Use OnReadyStateChange Property in Visual Basic and Visual C/C++.
Remarks
The property is write-only. When using scripting languages, this property can be set in ways other than directly accessing the property through IServerXMLHTTPRequest
. It can also be set using the onreadystatechange
attribute of the <XML>
tag, and the SCRIPT FOR
... construct.
This member is an extension of the World Wide Web Consortium (W3C) Document Object Model (DOM).
Versioning
Implemented in:
MSXML 3.0 and MSXML 6.0
Applies to
IServerXMLHTTPRequest-ServerXMLHTTP
See Also
onreadystatechange Event
readyState Property (IXMLHTTPRequest)