Re: RTE not usable inside updatepanel?

  •  11-21-2013, 8:01 AM

    Re: RTE not usable inside updatepanel?

    hi comb,

     

    Can you try the example page below? Does it get the same error?

     

    1. <%@ Page Language="C#" %>  
    2.   
    3. <%@ Register TagPrefix="RTE" Namespace="RTE" Assembly="RichTextEditor" %>  
    4. <!DOCTYPE html>  
    5.   
    6. <script runat="server">  
    7.   
    8. </script>  
    9.   
    10. <html xmlns="http://www.w3.org/1999/xhtml">  
    11. <head runat="server">  
    12.     <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />  
    13.     <title></title>  
    14. </head>  
    15. <body>  
    16.     <form id="form1" runat="server">  
    17.         <div>  
    18.             <asp:ScriptManager ID="ScriptManager1" runat="server"></asp:ScriptManager>  
    19.             <asp:UpdatePanel ID="UpdatePanel1" runat="server">  
    20.                 <ContentTemplate>  
    21.                     <RTE:Editor ID="editor1" runat="server" />  
    22.                 </ContentTemplate>  
    23.             </asp:UpdatePanel>  
    24.         </div>  
    25.     </form>  
    26. </body>  
    27. </html>  
     

    Regards,


    Ken 

View Complete Thread