Can anyone help with an ASP version of this script: http://www.web-max.ca/PHP/misc_12.php thx in advance
To begin, I would try to get a successful scrape loaded into your application. <% Set objXmlHttp = Server.CreateObject("Msxml2.ServerXMLHTTP") objXmlHttp.open "GET", "http://www.google.com/", False objXmlHttp.send if objXmlHttp.status = 200 then ' Return header code must be equal to 200 strHTML = objXmlHttp.responseText response.Write(Server.HTMLEncode(strHTML)) else ' There is an erro response.Write("Error : " & objXmlHttp.statusText) end if Set objXmlHttp = Nothing %> Code (markup): From: http://www.dotnetindex.com/articles/3112_How_to_Grab_A_HTML_Page_Within_an_ASP.asp From there it is simply parsing for the tags he outlines in the article you linked to.