Internet CyberMall Service and ProductsSandcastles on Seal BeachFind the best services and products on the Net at the lowest prices.Whether you want to find a web designer or buy golf hats, you can find what you want in the CyberMall directory. |
|
<%
Dim objXmlHttp
Dim strHTML
' This is the server safe version from MSXML3.
Set objXmlHttp = Server.CreateObject("Msxml2.ServerXMLHTTP")
objXmlHttp.open "GET", "http://www.mikeskramstad.com/cgi-bin/pushfeeds.pl?user=3&block=sextext", False
' Send it on it's merry way.
objXmlHttp.send
' Print out the request status:
Response.Write "Status: " & objXmlHttp.status & " " _
& objXmlHttp.statusText & " " ' Get the text of the response. ' This object is designed to deal with XML so it also has the ' following properties: responseBody, responseStream, and ' responseXML. We just want the text so I use: strHTML = objXmlHttp.responseText ' Trash our object now that I'm finished with it. Set objXmlHttp = Nothing %> <%= strHTML %> |
- Mike