Re: Control what is displayed in the bottom bar

  •  03-21-2011, 3:51 PM

    Re: Control what is displayed in the bottom bar

    Dear casso,
    Please refer to the following code:
     
    <%@ Page Language="C#"%>
    <%@ Register TagPrefix="CE" Namespace="CuteEditor" Assembly="CuteEditor" %>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
    <html>
        <head>
      <title>ASP and ASP.NET WYSIWYG Editor - Edit Static Html Example </title> 
     </head>
     <body>
            <form id="Form1" runat="server">   
            <CE:Editor id="Editor1"   ShowHtmlMode=false ShowPreviewMode=false ShowWordCount=true runat="server" ></CE:Editor><BR>
           </form>
     </body>
    </html>
    <script runat="server">
     void Page_Load(object sender, System.EventArgs e)
     {      
     } 
    </script>
     
    Thank you for asking
View Complete Thread