asp.net – 如何使用转换语法更改web.config设置?

前端之家收集整理的这篇文章主要介绍了asp.net – 如何使用转换语法更改web.config设置?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个值存储在我的web.config文件中,我想在网站发布时更改。我想将其从TEST更改为LIVE。
<appSettings>
    <add key="RequestMode" value="TEST" />
    // other keys here
</appSettings>

这是否可以使用web.config转换语法?如果是这样,怎么办?

谢谢。

解决方法

是的,这是可以用转换语法。这个转型应该做的诀窍:
<?xml version="1.0" encoding="utf-8"?>
<configuration xmlns:xdt="http://schemas.microsoft.com/XML-Document-Transform">
  <appSettings>
    <add key="RequestMode" value="LIVE" xdt:Transform="SetAttributes" xdt:Locator="Match(key)"/>
  </appSettings>
</configuration>
原文链接:https://www.f2er.com/aspnet/253209.html

猜你在找的asp.Net相关文章