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

Server Error in '/' Application.的问题求解

登录公司办公OA系统就出现了以下的问题,现将错误代码贴出求解(公司网站网址为:www.ztzymloa.com也可以自行登录查看): 
Server Error in '/' Application.
--------------------------------------------------------------------------------

Runtime Error 
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>
 
--------------------编程问答-------------------- <customErrors mode="Off"/>
楼主,把配置文件中的对于配置节这样修改下,看下具体的错误原因 --------------------编程问答-------------------- 你为什么不打开开关看看错误原因呢?

<customErrors mode="Off"/>


<compilation debug="true"></compilation> --------------------编程问答-------------------- 自定义错误模式为RemoteOnly时,自定义错误页面(比如自定义404错误页)只有浏览用户才能看到,开发人员在服务器上可以看到调试的错误信息。 --------------------编程问答-------------------- 你先把配置文件改过来,就可以看到详细错误了
补充:.NET技术 ,  ASP.NET
CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,