Test Color <font color="#ffcc99">This is Color</font> --> Google Chrome
Test Color <FONT color=#ffcc99>This is Color -- > IE 8
当我使用带有谷歌颜色更改的ajax html编辑器扩展器保存文本时,它可以正常工作但是当我在IE8中执行相同操作时,文本会变为上面提到的不同格式,但不起作用。 我该如何解决?
答案 0 :(得分:1)
此论坛帖子帮助了我:http://forums.asp.net/t/1751476.aspx
当您阅读或编写html时,只需使用Server.HtmlDecode(无论您的HTML是什么);
另外,在回发时,我不得不这样做:
htmlEditor.Text = Server.HtmlDecode(htmlEditor.Text);