网站上传到空间后. 在ie打开网站的网址.出现了如下的问题?请各位大哥帮忙!! (asp.net3.5)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.   

    <configuration> 
        <system.web> 
            <customErrors mode="Off"/> 
        </system.web> 
    </configuration> 
    提示的不是很清楚嘛……在配置文件加上这个节点……
      

  2.   

    <customErrors mode="On"/> 
      

  3.   

    <customErrors mode="On"/> 
    查看友好提示信息!
      

  4.   


    Config Source
       38:         -->
       39:  <compilation debug="true" strict="false" explicit="true">
       40:  <assemblies>加上去后又出现了这样的错误提示??????
      

  5.   

    web.config改坏了,在开发环境中改好了再传上去。如果在本地运行正常,在空间运行不正常,一般有几个问题:1、空间不支持asp.net3.5。2、数据库链接不对。3、配置文件注册的组件服务器不支持。把错误信息放开,根据详细错误解决吧。
      

  6.   

    Config Source 
      38:        --> 
      39: <compilation debug="true" strict="false" explicit="true"> 
      40: <assemblies> 
      

  7.   

    <compilation debug="true" strict="false" explicit="true">
    上面有错
    应该是
    <compilation debug="true" strict="false" explicit="true"/>
      

  8.   

    可能是bin中的文件与应用中的不一致造成的,也有可能是该文件夹的安全性设置问题,可以设置为everyone完全控制
      

  9.   


    上传空间 先关掉调试模式把debug="true"该城false