
August 13th, 2004, 11:34 AM
|
|
Registered User
|
|
Join Date: Jul 2004
Location: Buffalo NY, USA
Posts: 29
Time spent in forums: < 1 sec
Reputation Power: 0
|
|
|
XML Post
I am trying to do an XML POST to gather data from another website. This would retrieve the entire page with the data I wanted on it and then I would parse the data out.
I can usually get the data like this:
Set oXML = CreateObject("Msxml2.XMLHTTP")
' Request the ASP page that will collect our data.
oXML.Open "POST", "http://www.THEPAGE.com/THEPAGE.asp?NAME=Animal%20Aid%20of%20Cortland&CITY=&STATE=&ANDOR=OR&start=0", False
oXML.setRequestHeader "Content-Type","application/x-www-form-urlencoded"
oXML.Send
TheOutput = oXML.responseText
This requests information in a query string. The page that i am currently trying to get data from only accepts request. form
is there an alternative or anything?
|