|
Browse by Tags
All Tags » javascript » IE
-
I have an C# ASP.net page that adds the editor programmatically:
protected void Page_Load(object sender, EventArgs e)
{
RTE.Editor ed = new RTE.Editor();
ed.ID = "myEditor";
Page.Controls.Add(ed);
}
This works fine in IE7 ...
-
Hi,
When going back and forth between Normal and HTML, cute editor is putting extraneous characters in the HTML view. I am using the current 6.6 version. I am entering "test" in both scenarios below.
For IE9:
<div>test</div>
For Chrome:
test<div ...
|
|
|