Tags inside value of appsettings of web.config. How?

.net, web-config, xml

Solution

You have to html encode the < and > characters

"&lt;somevalue&gt;"

Problem

``` <appSettings> <add key="CodeNF" value="somevalue"/> </appSettings> In the above code, i need to put value="<somevalue>". ``` Is it possible to do that in my web.comfig ? Thanks

Original source