XMLHttp Call to another server
Hi,
Have you tried using the XMLHttp object to send a request to that page?
Response.Buffer = True
Dim objXMLHTTP, xml
Create an xmlhttp object:
Set xml = Server.CreateObject("Microsoft.XMLHTTP")
' Or, for version 3.0 of XMLHTTP, use:
' Set xml = Server.CreateObject("MSXML2.ServerXMLHTTP")
' Opens the connection to the remote server.
xml.Open "GET", "http://www.Whatever.com/pagetocall.asp", False
' Actually Sends the request and returns the data:
xml.Send
I think the latest/ most robust version is 6.0
Hope it helps,
Paul.
|