Re: how to disable the "more color"

  •  06-29-2009, 7:39 AM

    Re: how to disable the "more color"

    Hi goh6613,
     
    Try this way
     
    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.   
    8. </script>   
    9.   
    10. <html xmlns="http://www.w3.org/1999/xhtml">   
    11. <head runat="server">   
    12.     <title>Untitled Page</title>   
    13. </head>   
    14. <body>   
    15.     <form id="form1" runat="server">   
    16.         <div>   
    17.             <CE:Editor ID="Editor1" runat="server" >   
    18.             </CE:Editor>   
    19.         </div>   
    20.     </form>   
    21. </body>   
    22. </html>   
    23. <script> CuteEditorShowMoreColors=false</script>  

    Regards,
     
    Ken
View Complete Thread