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

exit function

end if

getHTTPPage=bytesToBSTR(Http.responseBody,"GB2312")

set http=nothing

if err.number<>0 then

Response.write(err.number)

End function

Function BytesToBstr(body,Cset)

dim objstream

set objstream = Server.CreateObject("adodb.stream")

objstream.Type = 1

objstream.Mode =3

objstream.Open

objstream.Write body

objstream.Position = 0

objstream.Type = 2

objstream.Charset = Cset

BytesToBstr = objstream.ReadText

objstream.Close

set objstream = nothing

End Function

Response.write(getHTTPPage)

%>

使用Msxml2.ServerXMLHTTP对象 错误提示是:

msxml3.dll 错误 '80072ee2'

The operation timed out

---------------------------------------------------------------------------

使用Microsoft.xmlhttp对象 错误提示是:

msxml3.dll: The download of the specified resource has

failed.

解决办法:

在IIS的设置中:

网站属性→主目录→配置→调试→两个√均去除

Logo

魔乐社区(Modelers.cn) 是一个中立、公益的人工智能社区,提供人工智能工具、模型、数据的托管、展示与应用协同服务,为人工智能开发及爱好者搭建开放的学习交流平台。社区通过理事会方式运作,由全产业链共同建设、共同运营、共同享有,推动国产AI生态繁荣发展。

更多推荐