This site is hosted and sponsored by hyve.com specialists in Cloud Hosting UK and VMware Hosting. If you are interested in our services please call us for chat on 0800 612 2524
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
%>
Back to ASP
Add new attachment
Only authorized users are allowed to upload new attachments.
«
This page (revision-1) was last changed on 14-Mar-2007 11:54 by UnknownAuthor