Page Capture on external site (running javascript on this page)

0

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?

    
asked by anonymous 05.07.2018 / 16:01

0 answers