Ti catturi i dati cosi :
StrURL="http://www.nomedominio.com/pagina.html"
Set objXMLHTTP = Server.CreateObject("MSXML2.ServerXMLHTTP")
objXMLHTTP.Open "GET", StrURL, false
objXMLHTTP.Send
If Err.Number <> 0 then
Response.Write Err.Description : Response.end
End if
contenuto = CStr(objXMLHTTP.ResponseText)
e salvi il contenuto della variabile "CONTENUTO" in un db, in un file html, a video...etc.etc.
Ciau