2

我需要在我的 MVC 3 Web 应用程序的 IIS 7.5 中的 web.config 中将 CustomErrors 设置为 OFF。

使用此代码,CustomError 仍处于默认模式。

你能告诉我我在这里错了什么吗?坦斯克

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

编辑解决方案(区分大小写的问题)

 <system.web>
    <customErrors mode="Off">
</customErrors>
...
4

1 回答 1

3

customErrors 区分大小写。

<system.web>
    <customErrors mode="Off">
    </customErrors>
...
</system.web>
于 2013-01-23T14:54:07.753 回答