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

Mobile GIS Delphi Sql Server OpenSocial ASP.Net/C# Google KML RSS
Showing posts with label web page parse. Show all posts
Showing posts with label web page parse. Show all posts

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