web.config有问题

时间:2014-08-28 17:44:50

标签: c# asp.net-mvc asp.net-mvc-4

我的web.config中有这样的配置吗?

<configuration>
  <appSettings>
    <add key="BASE_URL" value="/mvc/" />
  </appSettings>
</configuration>

在我的web.Release.config中,我有这个:

<configuration xmlns:xdt="http://schemas.microsoft.com/XML-Document-Transform">
  <appSettings>
    <add key="BASE_URL" value="/mvc" xdt:Transform="Replace" xdt:Locator="Match(key)"/>
  </appSettings>
</configuration>

但是,当我调用BASE_URL属性时,它返回“/ mvc /”而不是“/ mvc” 我使用Release Configuration来构建我的项目 我在VS 2013中使用C#MVC4

0 个答案:

没有答案