当前位置:编程学习 > C#/ASP.NET >>

Description: An application error occurred on the server. The current custom error settings for this

Description: An application error occurred on the server. The current custom error settings for this application prevent the details of the application error from being viewed remotely (for security reasons). It could, however, be viewed by browsers running on the local server machine. 

Details: To enable the details of this specific error message to be viewable on remote machines, please create a <customErrors> tag within a "web.config" configuration file located in the root directory of the current web application. This <customErrors> tag should then have its "mode" attribute set to "Off".


<!-- Web.Config Configuration File -->

<configuration>
    <system.web>
        <customErrors mode="Off"/>
    </system.web>
</configuration>
 

Notes: The current error page you are seeing can be replaced by a custom error page by modifying the "defaultRedirect" attribute of the application's <customErrors> configuration tag to point to a custom error page URL.


<!-- Web.Config Configuration File -->

<configuration>
    <system.web>
        <customErrors mode="RemoteOnly" defaultRedirect="mycustompage.htm"/>
    </system.web>
</configuration>
 
我的程序在本机上运行是正确的,放在服务器上就出现这个问题,请给位高手给解决,我的程序是用VS2005开发的,谢谢各位了! --------------------编程问答-------------------- 我也遇到同样问题,希望高手,帮帮忙~~~ --------------------编程问答-------------------- 我也遇到拉 没人可以解决吗? --------------------编程问答-------------------- 哎,看来是国际问题,没人能解决掉了,我今天也体会到了
从装了几次服务器,结果还是个这 --------------------编程问答-------------------- 服务器端错误,出现问题的原因很多
先找台机子测试一下,记得customErrors设为off
根据具体错误找原因 --------------------编程问答-------------------- 2009年的贴啊 
这个提示是不允许远程主机看到错误信息,具体错误信息没能看到,解决不了问题
补充:.NET技术 ,  ASP.NET
CopyRight © 2012 站长网 编程知识问答 www.zzzyk.com All Rights Reserved
部份技术文章来自网络,