Skip to main content

Posts

Showing posts with the label web page parse

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