msxl2.serverxmlhttp 和 microsoft.xmlhttp的困惑
on error resume nextSourceCode = -1
Url = "http://www.
'set oSend=createobject("Microsoft.XMLHTTP")
set oSend=createobject("MSXML2.ServerXMLHTTP")
SourceCode = oSend.open ("GET",url,false)
oSend.send()
'if err.number<>0 then
' Response.write err.description
' Response.End()
'end if
SourceCode = bytes2BSTR(oSend.responseBody)
为什么用 msxl2.serverxmlhttp 可以正常获取url的页面的值,而microsoft.xmlhttp 却不行但是有时候又行,难道和服务器设置有关系?