Re: configuring the cute editor

  •  06-18-2009, 6:05 AM

    Re: configuring the cute editor

    Hi Arunabandu,
     
    Try this example
     
    1. <%@ Page Language="C#" %>   
    2.   
    3. <%@ Register TagPrefix="CE" Namespace="CuteEditor" Assembly="CuteEditor" %>   
    4. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">   
    5. <html xmlns="http://www.w3.org/1999/xhtml">   
    6. <head runat="server">   
    7.     <title>Untitled Page</title>   
    8. </head>   
    9. <body>   
    10.     <form id="form1" runat="server">   
    11.         <div style="margin-top: 80px;">   
    12.             <CE:Editor ID="Editor1" UseFloatToolbar="true" ShowBottomBar="false" runat="server">   
    13.             </CE:Editor>   
    14.         </div>   
    15.     </form>   
    16. </body>   
    17. </html>  

    Regards,
     
    ken
View Complete Thread