I am using a text editor (ckeditor) to allow users to format text, then I submit the formatted text to the database. The editor seems to convert html tags to entities -- for example a paragraph tag is converted to
<p><
When I try to pull the data back out and display it on a web page, the html is not rendered and the browser just displays the entities like plain text instead of, for instance, creating a paragraph break.
I've tried doing this at the time I insert the data into the database:
Server.UrlDecode(Request.Form("CKEditorControl1"))
But that's not seeming to work. Am I using the Decode command incorrectly or is there something else that I could try?
Thanks in advance for your help.
Go to the complete details ...