I have a simple insert program containing a RichTextEditor, which does nice formatting to the text and then stores it in the database.
When I store this in the database table it gets stored along with html tags.
But when I would want to do a select over the records from the same table, I get it in different format:
for example if from my richeditText, I had stored
<p>hello</p>
when I do a select I get it as
<p>hello</p>
how do I render this as html?