这是脚本。试图自己执行... nada。尝试通过任务调度程序执行... nada。如果我通过IE浏览下面的URL它是有效的。任何想法???
''//Force the script to finish on an error.
On Error Resume Next
''//Declare variables
Dim objRequest
Dim URL
Set objRequest = CreateObject("Microsoft.XMLHTTP")
''//Put together the URL link appending the Variables.
URL = "https://myurlhere.com"
''//Open the HTTP request and pass the URL to the objRequest object
objRequest.open "GET", URL , false
''//Send the HTML Request
objRequest.Send
''//Set the object to nothing
Set objRequest = Nothing
答案 0 :(得分:0)
“在Internet Explorer 8中,不支持VBScript语法”
- http://msdn.microsoft.com/en-us/library/ms535874%28VS.85%29.aspx
这可能是问题吗?
答案 1 :(得分:0)
问题是该页面需要Windows身份验证,即使该脚本作为经过身份验证的用户运行...但由于在询问时未使用用户名和密码进行响应而失败。
解决方案: *启用匿名身份验证 *更新web.config,以便通知控制器不需要经过身份验证的用户