Hi,
I can't reproduce this error. I tested witht the simpe pages below. Do I need special steps to reproduce it?
Can you try the example pages below too? Does it get the same problem?
- <%@ Page Language="C#" ValidateRequest="false" %>
-
- <%@ Register TagPrefix="CE" Namespace="CuteEditor" Assembly="CuteEditor" %>
- <!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 runat="server">
- <title>example</title>
- </head>
- <body>
- <form id="form1" runat="server">
- <input type="button" value="showEditor" onclick="showEditor()" />
- </form>
- </body>
- </html>
- <script>
- function showEditor()
- {
- window.showModalDialog("edit.aspx");
- }
- </script>
edit.aspx code
- <%@ Register TagPrefix="CE" Namespace="CuteEditor" Assembly="CuteEditor" %>
-
- <%@ Page Language="c#" %>
-
- <html>
- <head>
- <title>example</title>
- </head>
- <body>
- <form runat="server" id="Form1">
- <CE:Editor ID="editor1" runat="server" />
- </form>
- </body>
- </html>
Regards,
Ken