Grab HTML with XML
- Home
- ASP
- Grab HTML with XML
This function shows you how to use XMLHTTP object to retrieve the HTML code of any webpage on the Internet.
The Code:
<%
Function GetHTML(strPage)
On Error Resume Next
Set objXMLHttp = Server.CreateObject ("Microsoft.XMLHTTP")
objXMLHttp.Open "GET", strPage ,False,"",""
objXMLHttp.Send
If Err.Number = 0 Then
If objXMLHttp.Status = 200 then
GetHTML = objXMLHttp.ResponseText
Else
GetHTML = "Incorrect URL"
End if
Else
GetHTML = Err.Description
End If
Set objXMLHttp = Nothing
End Function
%>
Usage:
<%=GetHTML("http://www.yahoo.com")
%>
Result
Yahoo | Mail, Weather, Search, Politics, News, Finance, Sports & Videos
ABC News 3822 min read
html xml objXMLHttp xml objects