I want to allow HTML in a comment box (eventually use tinymce or something like that), store it in an MSSQL database, and then read it back to a page where the field is rendered in a tabl cell.
It all works fine with the storing of the HTML after I fixed the validation problem on the action method. But when read back from the database, it renders the text with the HTML tags visible, instead of formatted HTML. I.e. if I look at the HTML source code in the table, its like this:
<td>
<p>Testing HTML</p><p>Hope it works</p>
</td>
So how do I render it as formatted text? When I did this to test out the validation, I just wrote in the tags in the textarea.