I tried in my pC, my browser and IIS. The test.asp file includes these lines
Set xml = Server.CreateObject("Msxml2.ServerXMLHTTP")
p=Request.QueryString("p")
url = " & p
xml.Open "GET", url, False
xml.Send
and got timed out error message
msxml3.dll error '80072ee2'
Immediately after that, I tried the same by clicking the refresh button and it worked without error!
Following that, I tried (instead of '?p=a', this time used '?p=b') and got the same error message again!
Any idea? What I should do now?
Set xml = Server.CreateObject("Msxml2.ServerXMLHTTP")
p=Request.QueryString("p")
url = " & p
xml.Open "GET", url, False
xml.Send
and got timed out error message
msxml3.dll error '80072ee2'
Immediately after that, I tried the same by clicking the refresh button and it worked without error!
Following that, I tried (instead of '?p=a', this time used '?p=b') and got the same error message again!
Any idea? What I should do now?