Category: ASP
Connecting To Web Page Using ASP
<% Dim objXMLHTTP, objXML ' Create an xmlhttp object: Set objXML = Server.CreateObject("Microsoft.XMLHTTP") ' Opens the connection to the remote server. objXML.Open "GET", "http://www.hyve.com/", False ' Actually Sends the request and returns the data: objXML.Send 'Display the HTML both as HTML and as text Response.Write objXML.responseText Set objXML = Nothing %>
ASP