recurrir a XMLHTTP para sacar el codigo de la pagina
antes de esto poner el codigo q tu quieras y punto
<%
Dim xml
Set xml = Server.CreateObject("Microsoft.XMLHTTP")
xml.Open "GET","http://www.portalurbano.com/", False
xml.Send
Response.Write "<h1>The HTML text</h1><xmp>"
Response.Write xml.responseText
Response.Write "</xmp><p><hr><p><h1>The HTML Output</h1>"
Set xml = Nothing
%>
otra cosa será la velocidad con q lo haga
fuente:
http://www.w3schools.com/dom/dom_http.asp