Ciao a tutti.
Ho provato a usare questo codice trovato su freeasp.html.it

<%
URL = "http://www.freeasp.it"
Set objXMLHTTP = Server.CreateObject("Microsoft.XMLHTTP")
objXMLHTTP.Open "Get", URL, False
objXMLHTTP.Send
testoHTML = CStr(objXMLHTTP.ResponseStream)
Set xml = Nothing

response.write(testoHTML)
%>

per "catturare" il codice HTML della pagina (in pratica per emulare il comando "Visualizza HTML" del browser.

ottengo però un errore : (0x800C0005)
alla linea objXMLHTTP.Send

Ho fatto diverse ricerche sul WEB, ho scaricato msxml.msi e l'ho installato, ho registrato le dll...ma continuo ad avere l'errore.

Qualcuno mi sa aiutare?
Grazie. MAX