Hi,
I have searched needlessly for the answer to this question and i was wondering if anyone knows the answer.
I am trying to store a String like this:
String output = "<p>hello</p>";
and then return it to screen without it looking like this <p>hello</p>. In other words is their any way to tell a page that the string being output should be parsed as HTML. Should i store the string differently?
One other thing the HTML i am storing is a bit more detailed than a paragraph tag so i cant simply say
<p><%= someString %></p>
Thanks in advance,