PDA, Web, Desktop, GIS, Field Mapping, KML, UTM, Education, Cartoon

Mobile GIS Delphi Sql Server OpenSocial ASP.Net/C# Google KML RSS

May 9, 2008

Parse web page in ASP




URL = "your url here"

Set webconn= CreateObject("Microsoft.XMLHTTP")
webconn.Open "get", URL , False
webconn.Send
ResponseText = webconn.ResponseText


set webconn = nothing