XMLHTTP在ASP中调用的问题
Function XmlRequest(theURL)
Set XmlHttp = CreateObject("Microsoft.XMLHTTP")
XmlHttp.Open "Get",theURL,False
XmlHttp.Send
XmlRequest = XmlHttp.ResponseText
End Function
Response.Write XmlRequest("Now.asp")
'换成http://127.0.0.1/now.asp就好用,我这个文件和now.asp是放到同目录下的,不知道为什么不行