There are several ways to read an external page with a component type AspHTTP.Conn, Dynu.HTTP, MSXML2.XMLHTTP, Microsoft.XMLHTTP. For example:
<%
Set XMLHttp = Server.CreateObject("Microsoft.XMLHTTP")
'CAPTURAR CORPO'
XMLHttp.open "GET", "http://www.site.com.br/pagina", false
XMLHttp.send()
strCorpo = XMLHttp.ResponseText
Set XMLHttp = Nothing
%>
But what if the page I need to get, part of your content has to execute a javascript before.
Can you do it?