Con il codice:

codice:
<%
strURL = "http://www.paginaweb.ext"
Set objXML = Server.CreateObject("Microsoft.XMLHTTP")
objXML.Open "get", strURL, False
objXML.Send
html = objXML.responseText
response.write html
response.end
Set objXML = Nothing
%>
visualizzo la pagina web in questione "compilata" se volessi visualizzare il codice puro HTML come devo fare?

Grazie