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

How useful was this post?

Click on a star to rate it!

Average rating 5 / 5. Vote count: 1

No votes so far! Be the first to rate this post.