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>
 

解决方案 »

  1.   

    web.config配置 的问题
    你忙改改这一句?
    <customErrors mode="Off"/>
      

  2.   

    我也遇到过这样的问题.我同时上传程序到两个公司不同的WEB服务器上面,一个直接可以没有问题,另一个就出现上面的错误,都是用的二级测试域名.但是出错的那个只要你多刷新一下就又可以正常访问...我将defaultRedirect设置成了出错了页面.不知道为什么会出这样的错误..可在有的服务器上又根本不会出错.看来是SERVER的设置问题....
      

  3.   

    to drk928   : 这个问题怎么修改呢??
      

  4.   

    回复人: light999(普照) ( ) 信誉:100  2003-12-10 15:13:00  得分:0 
     
     
      web.config配置 的问题
    你忙改改这一句?
    <customErrors mode="Off"/>
      

  5.   

    先把web.config文件改为
    <configuration>
        <system.web>
            <customErrors mode="Off"/>
        </system.web>
    </configuration>
    再看看报什么错误,你这样不贴出实际的错误信息来,很难有人看出你的出了什么问题,
      

  6.   

    to xueyhfeng :实际在用的系统,不敢乱动了