#13697 closed Bug (invalid)
ckeditor - removes tags when data is loaded
Reported by: | mustafao | Owned by: | |
---|---|---|---|
Priority: | Normal | Milestone: | |
Component: | General | Version: | |
Keywords: | Cc: | mustafaozudogru@… |
Description
When I save data via ckeditor, it can do correct saving to database like this:
List<dynamic> list=new List<dynamic>();
But when I get data to page and load in edit screen, it is looking like this in ckeditor control:
List list=new List(); I want to show all data with <dynamic> generic codes. How can I do this?
Change History (2)
comment:1 Changed 10 years ago by
Cc: | mustafaozudogru@… added |
---|
comment:2 Changed 10 years ago by
Keywords: | c# ckeditor code-snippet removed |
---|---|
Resolution: | → invalid |
Status: | new → closed |
Version: | 4.5.3 |
You need to encode your data before loading it into a textearea. Please see my answer here: http://stackoverflow.com/questions/29814698/encoding-of-entities-no-perfect-solution
Thanks for answer.It worked.