Hi tarannar,
Can you try the example page below? Can you reproduce the same problems with it?
- <%@ Page Language="c#" ValidateRequest="false" %>
-
- <%@ Register TagPrefix="RTE" Namespace="RTE" Assembly="RichTextEditor" %>
-
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <script runat="server">
- protected override void OnLoad(EventArgs e)
- {
- Editor1.Text = @" <div unselectable='on' contenteditable='false'>read only</div> <div>editable content</div>";
- base.OnLoad(e);
- }
- </script>
- </head>
- <body>
- <form id="Form1" method="post" runat="server">
- <RTE:Editor ID="Editor1" runat="server" />
- </form>
- </body>
- </html>
Regards,
Ken