Hi there, using asp.net I am querying from an access database to display text in the ckeditor textbox. After editing the text and submitting it the to the database, when I then pull the text back out of the datebase to display it, it is rendered as plain text and I don't know why.
So, for example, when I do Response.Write(dbread.Item("mytext") of text that was edited in ckeditor, I get something that shows the paragraph tag instead of actually making a paragraph break or shows the bold tag instead of actually bolding text. And when I look in the database, I see that ckeditor has submitted the content formatted with entities rather than tags. I don't have this problem with formatted text that was not rendered in ckeditor.
The content continues to display fine in the ckediter text box but it doesn't display properly anywhere else!
Any tips?