那你就先在web.config里面,把他改成Off再看看是什么错误了

解决方案 »

  1.   

    1.有可能是freamwork版本问题
    2.站点配置有问题,可能网络空间本身.net运行有问题
      

  2.   

    改成Off了?把那个web.config删除重新再传一次
      

  3.   

    我已经把那个web.config删除重新再传一次了,,可是问题还是一样的,没有变!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>
     
      

  4.   

    改成OFF是没有用的,一般的服务提供商都会在IIS里屏蔽错误显示
      

  5.   

    很明显,Description,Details,Notes这三段报错没有任何帮助,原因也就不得而知了
      

  6.   

    要看看这个空间支不支持.NET 了另外要看一下你IIS里面的设置.