Got it figured out
<%
Response.Buffer = True
Dim objXMLHTTP, xml
' instantiate the XMLHTTP OBJECT :
Set objXML = Server.CreateObject("Microsoft.XMLHTTP")
'or you can use
' Set objXML = Server.CreateObject("MSXML2.ServerXMLHTTP")
' open a connection to a remote website.
objXML.Open "GET", "http://www.abcdefghijklmnop.com", False
' sends the request and returns the data:
objXML.Send
'Display the HTML both as HTML and as text
Response.Write "<h1>HTML TEXT</h1><xmp>"
Response.Write objXML.responseText
Response.Write "</xmp><p><hr><p><h1>HTML PAGE</h1>"
Response.Write objXML.responseText
Set objXML = Nothing
%>