Re: saving a fixed color pallete????

  •  04-14-2009, 8:35 AM

    Re: saving a fixed color pallete????

    Hi mook,
     
    You can put this code anywhere on the page, like:
     
    ------------------------------------------------------>
     

    <%@ Page Language="C#" %>

    <%@ Register TagPrefix="CE" Namespace="CuteEditor" Assembly="CuteEditor" %>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

    <script>
    CuteEditorColorArray = new Array("#FF0000","#FF9900","#99CC00","#339966","#33CCCC","#3366FF","#800080","#999999",
    "#FF00FF","#FFCC00","#FFFF00","#00FF00","#00FFFF","#00CCFF","#993366","#C0C0C0");
    </script>

    <html xmlns="http://www.w3.org/1999/xhtml">
    <head runat="server">
        <title>Untitled Page</title>
    </head>
    <body>
        <form id="form1" runat="server">
                  <CE:Editor ID="editor1" runat="server" >
            </CE:Editor>
        </form>
    </body>
    </html>
    --------------------------------------------------------->
     
    Regards,
     
    Ken
View Complete Thread