I want to display everything from another page on my page. (I have permission as I did make the original page) I have what I found works so far below. Right now this script does not display any of the images. It only displays the text. I would appreciate any help as I think this should be straight forward and I am having a hard time with it.
<html>
<head><title>Test Page</title></head>
<body>
<%@ Language=VBScript %>
<%
set objHttp = Server.CreateObject("Msxml2.ServerXMLHTTP")
objHTTP.Open "GET", "http://www.mysite.com", false
objHTTP.Send
Response.Write objHTTP.ResponseText
%>
</body>
</html>
Thanks,
John