码迷,mamicode.com
首页 > 移动开发 > 详细

Server Error in '/' Application. 的问题

时间:2014-08-01 10:48:31      阅读:180      评论:0      收藏:0      [点我收藏+]

标签:des   style   color   strong   io   文件   for   问题   

昨晚发布这个问题搞了一晚上,发现网上很多解决办法都不靠谱:   

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>  

 

翻译下结果:

运行时错误   
说明:   服务器上出现应用程序错误。此应用程序的当前自定义错误设置禁止远程查看应用程序错误的详细信息(出于安全原因)。但可以通过在本地服务器计算机上运行的浏览器查看。   

详细信息:   若要使他人能够在远程计算机上查看此特定错误信息的详细信息,请在位于当前   Web   应用程序根目录下的“web.config”配置文件中创建一个   <customErrors>   标记。然后应将此   <customErrors>   标记的“mode”属性设置为“Off”。 


<!--   Web.Config   配置文件   --> 

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

注释:   通过修改应用程序的   <customErrors>   配置标记的“defaultRedirect”属性,使之指向自定义错误页的   URL,可以用自定义错误页替换所看到的当前错误页。 


<!--   Web.Config   配置文件   --> 

<configuration> 
        <system.web> 
                <customErrors   mode= "RemoteOnly "   defaultRedirect= "mycustompage.htm "/> 
        </system.web> 
</configuration> 

说明里面已经说的很清楚了,服务器上出现应用程序错误。此应用程序的当前自定义错误设置禁止远程查看应用程序错误的详细信息(出于安全原因)。但可以通过在本地服务器计算机上运行的浏览器查看。

就是程序出现了异常,处于安全原因没有输出异常的具体内容,需要到服务器上查看,照做就是。

解决办法就是直接到服务器上,在服务器上打开程序,就可以看到异常的内容了。 

Server Error in '/' Application. 的问题,布布扣,bubuko.com

Server Error in '/' Application. 的问题

标签:des   style   color   strong   io   文件   for   问题   

原文地址:http://www.cnblogs.com/xinwang/p/3884313.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!