I need to display a welcome message on a webpage. I'd like to have the text of the message saved within the Web.Config file. The text will contain line breaks.
e.g.
<appSettings>
<add key="Test" value="Hello
There
How are you?"/>
</appSettings>
However when I display this it all goes back on 1 line.
Can anybody help?
I'm using ASP.Net 4.0
Thanks in advance