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
Anuya
source share1 answer
You must html encode <and> characters
"<somevalue>" +15
Tgh
source share