web.config的appsettings值内的标签.怎么样?

Anu*_*uya 8 .net xml web-config

 <appSettings>
    <add key="CodeNF" value="somevalue"/>
  </appSettings>

In the above code, i need to put value="<somevalue>".
Run Code Online (Sandbox Code Playgroud)

是否可以在我的web.comfig中执行此操作?谢谢

TGH*_*TGH 15

你必须对<和>字符进行html编码

"&lt;somevalue&gt;"
Run Code Online (Sandbox Code Playgroud)