Web.Config文件中的运行时错误

时间:2011-04-14 14:03:31

标签: c# asp.net web-hosting

这可能是一个奇怪的问题,但我被困住了。我正在将我的网页托管到我公司的网站托管服务。当我发布已发布的文件时,这让我错了:

'/'应用程序中的服务器错误。

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

详细信息:要在远程计算机上查看此特定错误消息的详细信息,请在位于当前Web应用程序根目录中的“web.config”配置文件中创建标记。然后,此标记应将其“mode”属性设置为“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.config的样子:

    <system.web>
    <customErrors mode="RemoteOnly">
    </customErrors>

1 个答案:

答案 0 :(得分:2)

将模式更改为关闭,然后查看错误实际是什么。

如果错误仍然非常模糊,那么web.config中的错误可能就是错误。