在调试</customerrors>时,如何更改web.config以自动提供<customerrors mode =“Off”>

时间:2013-01-10 19:06:23

标签: asp.net-mvc asp.net-mvc-3 asp.net-mvc-4

在我的Web.Debug.config中我有这个:

  <system.web>
    <!--
      In the example below, the "Replace" transform will replace the entire 
      <customErrors> section of your Web.config file.
      Note that because there is only one customErrors section under the 
      <system.web> node, there is no need to use the "xdt:Locator" attribute.

      <customErrors defaultRedirect="GenericError.htm"
        mode="RemoteOnly" xdt:Transform="Replace">
        <error statusCode="500" redirect="InternalError.htm"/>
      </customErrors>
    -->
  </system.web>

如何更改此设置以便将配置文件中的值更改为:

web.config文件中的

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

2 个答案:

答案 0 :(得分:5)

只需将其更改为:

  <customErrors mode="Off" xdt:Transform="Replace">
  </customErrors>

答案 1 :(得分:4)

Eonasdan走在正确的轨道上。

执行此操作的正确方法是,在调试配置中,将错误设置为“关闭”。

在Web.Release.config中,使用转换:

<customErrors mode="Off" xdt:Transform="Replace">
</customErrors>

这样,当您将代码推送到生产环境时,请使用Visual Studio下拉列表中的Web.Release.config文件,转换将替换web.config文件中的内容。