Re: Cute Editor FIX - PostBackCommand no longer firing

  •  06-10-2010, 12:44 AM

    Re: Cute Editor FIX - PostBackCommand no longer firing

    Hi Judge,
     
    Try
     
    1. <%@ Page Language="C#" %>   
    2.   
    3. <%@ Register Namespace="CuteEditor" Assembly="CuteEditor" TagPrefix="CE" %>   
    4. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">   
    5.   
    6. <script runat="server">      
    7.     protected override void OnLoad(EventArgs e)   
    8.     {   
    9.         if (!IsPostBack)   
    10.         {   
    11.             editor1.EditorWysiwygModeCss = "~/empty.css";   
    12.         }   
    13.   
    14.         base.OnLoad(e);   
    15.     }   
    16.     protected void editor1_PostBackCommand(object sender, CommandEventArgs e)   
    17.     {   
    18.         label1.Text = editor1.Text;   
    19.     }   
    20. </script>   
    21.   
    22. <html xmlns="http://www.w3.org/1999/xhtml">   
    23. <head id="Head1" runat="server">   
    24.     <title>Untitled Page</title>   
    25. </head>   
    26. <body>   
    27.     <form id="form1" runat="server">   
    28.         <div>   
    29.             <CE:Editor ID="editor1" runat="server" OnPostBackCommand="editor1_PostBackCommand">   
    30.             </CE:Editor>   
    31.             <asp:Label ID="label1" runat="server"></asp:Label>   
    32.         </div>   
    33.     </form>   
    34. </body>   
    35. </html>  
    Regards,
     
    Ken
View Complete Thread