In the above code, i need t...">

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

<appSettings> <add key="CodeNF" value="somevalue"/> </appSettings> In the above code, i need to put value="<somevalue>". 

Is it possible to do this on my website? Thanks

+8
xml web-config
source share
1 answer

You must html encode <and> characters

 "&lt;somevalue&gt;" 
+15
source share

All Articles