Re: The page flash when include cuteeditor after postback whatever in the updatepanel

  •  08-01-2010, 11:18 PM

    Re: The page flash when include cuteeditor after postback whatever in the updatepanel

    Hi surrounding,
     
    Please try the example below.
     
    If you still get this issue. Please create a simple page which can reproduce this issue and send it to Kenneth@CuteSoft.net. I will check it and get back to you as soon as possible.
     
    1. <%@ Page Language="C#" %>   
    2.   
    3. <%@ Register Namespace="CuteEditor" Assembly="CuteEditor" TagPrefix="CE" %>   
    4. <%@ Register Namespace="AjaxControlToolkit" Assembly="AjaxControlToolkit" TagPrefix="AJAX" %>   
    5. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">   
    6.   
    7.   
    8. <html xmlns="http://www.w3.org/1999/xhtml">   
    9. <head runat="server">   
    10.     <title>example</title>   
    11. </head>   
    12. <body>   
    13.     <form id="theForm" runat="server">   
    14.     <asp:ScriptManager ID="ScriptManager1" runat="server" />   
    15.        <asp:UpdatePanel ID="UpdatePanel2" runat="server">   
    16.         <ContentTemplate>   
    17.             <asp:Button ID="button1" runat="server" Text="PostBack" />   
    18.         </ContentTemplate>   
    19.     </asp:UpdatePanel>   
    20.     <asp:UpdatePanel ID="UpdatePanel1" runat="server" UpdateMode="Conditional">   
    21.         <ContentTemplate>   
    22.             <CE:Editor ID="editor1" runat="server">   
    23.             </CE:Editor>   
    24.         </ContentTemplate>   
    25.     </asp:UpdatePanel>   
    26.     
    27.     </form>   
    28. </body>   
    29. </html>  
    Regards,
     
    Ken
View Complete Thread