trovato!

codice:
  Response.Buffer = True
  Dim objXMLHTTP, xml

  Set xml = Server.CreateObject("Microsoft.XMLHTTP")

  xml.Open "GET", "http://domain/page.html", False
    
  xml.Send

  Response.Write xml.responseText

  Set xml = Nothing