zoukankan      html  css  js  c++  java
  • Server Error in '/' Application. .net

    报错原因:

    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 --> 

     

    解决办法:

    1.在本机调试好好的,传到网上出现这个问题,请问如何解决? 
    2.如何配置web.config?  
     
    原因是:
      1.web.config上传到服务器后编码的问题!在web.config中写入
    <globalization requestEncoding="GB2312" responseEncoding="GB2312" uiCulture="zh-CN"   culture="zh-CN" fileEncoding="GB2312" />
      2.IIS配置问题.
      3.配置节点中 mode="Off"
    <configuration> 
        <system.web> 
            <customErrors mode="Off"/> 
        </system.web> 
    </configuration> 

    分析加一下代码:(作用)

    <configuration> 
     <system.web> 
     <customErrors mode="Off"/> 
     </system.web> 
    </configuration> 
    加个这样的,就可以看到具体报什么错误,不然不管出什么错,报的都是那样,每人知道是什么错误.不过传网上不能用了,多半是配置问题

     

  • 相关阅读:
    Mego(02)
    Mego(01)
    ThoughtWorks(中国)程序员读书雷达 —— 书籍下载整理
    Spring源码编译一次性通过&遇到的坑解决方法
    Elasticsearch怎么修改索引字段类型?
    Flume 自定义拦截器 多行读取日志+截断
    用Hibernate框架把hql生成可执行的sql语句-Oracle方言
    深入浅出SQL Server中的死锁 [转于CareySon]
    第一次迭代随笔
    结对编程代码分析
  • 原文地址:https://www.cnblogs.com/northeastTycoon/p/2784866.html
Copyright © 2011-2022 走看看