创建Microsoft.xmlhttp或Msxml2.ServerXMLHTTP对象服务器都无法获取自己本地IIS运行出来的网页内容代码

<%
Function getHTTPPage()
dim http
set http=Server.createobject("Msxml2.ServerXMLHTTP")
Http.open "GET","http://127.0.0.1/test.html",false
Http.send()
if Http.readystate<>4 then

More...