访问网站提示An error occurred on the server when processing the URL的解决方法
程序员文章站
2022-06-20 21:13:40
大家看到这个信息不要怕,这个就说明了你的iis7或iis7.5的下的网站有错误。只要找到具体的信息就可以了,跟iis6下的经典提示错误一样的。
解决方法:an error...
大家看到这个信息不要怕,这个就说明了你的iis7或iis7.5的下的网站有错误。只要找到具体的信息就可以了,跟iis6下的经典提示错误一样的。
解决方法:an error occurred on the server when processing the url. please contact the system administrator
在windows7或server2008上安装了iis7.5,调试asp程序时出现以下错误:
an error occurred on the server when processing the url. please contact the system administrator
解决方法如下:
设置方法一:
以管理员身份运行cmd,将目录定位到%windir%\system32\inetsrv\,然后执行appcmd set config -section:asp -scripterrorsenttobrowser:true。
%windir%\system32\inetsrv\appcmd set config -section:asp -scripterrorsenttobrowser:true
设置方法二:
打开iis7的asp设置,展开“调试属性”选项,“将错误发送到浏览器”这项默认的是false,改为true,然后点右侧的应用!如图所示:
通过以上设置后,再从浏览时打开出错asp页面时就能看到页面出错的详细信息,方使调试。如果是公开的web服务器建议不要打开此选项,以防出错信息被他人利用。