Forum Moderators: open
ultimateasp.com/tutorial/activex_openurl.asp
You may run into problems though, depending on what you intent to grab. If it is a news site or something that costs them money to produce I am guessing it wont be long before your IP is banned from the site.
Cheers
<added>As long as you own the target site, you can use something like this:)</added>
function getPage( strPage )
set http_obj = server.CreateObject("Microsoft.XMLHTTP")
http_obj.open "GET", strPage , false
http_obj.send
getPage = http_obj.responseText
end function
You will also need to parse the actual data out with a function something like this:
function getData( byval strSource, byval strTagID, byval bDirection, byval intStart)