Syntax
Set oFactory = window.XMLHttpRequest
Possible Values
oFactory contains a reference to an XML HTTP Request Factory for HTML
Remarks
The object exposes the interface IHTMLXMLHttpRequestFactory; it is undocumented and JScript uses it intrinsicly.
However, the following code does not work in VBScript:
REM Set oReq = new XMLHttpRequest
Example
dim oReq
if window.XMLHttpRequest then
set oReq to window.XMLHttpRequest.Create
oReq.open "GET", "http://localhost/test.xml"
oReq.send
window.alert oReq.statusText
end if