Use HTML markup into web.config file
- by stighy
Hi, i've to display a messagge in my homepage (default.aspx) different for each "installation" of my web app. i would like to avoid to make a call to database to show this message.. so i've thougth to use web.config to store something like this
<add key="WelcomeString" value="lorem ipsus <b>doloret sit amen</b>" />
But i've noticed i can't use html markup into web.config ...
Is there a better approach ? Or is there a way to insert html markup into web.config ?
Thank you again stack overflow guru's... i'm learning from you a lot of things !