Reputation: 8350
<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
Upvotes: 10
Views: 5207
Reputation: 39248
You have to html encode the < and > characters
"<somevalue>"
Upvotes: 18