Topbar
Topbar
Sign in
|
Join
|
Client Center
Home
Products
Client Center
Contact
Purchase
Support forums
»
Products
»
Cute Editor for .NET
»
Re: Control what is displayed in the bottom bar
Control what is displayed in the bottom bar
Last post 03-22-2011, 4:42 PM by
Eric
. 3 replies.
Sort Posts:
Oldest to newest
Newest to oldest
Previous
Next
03-21-2011, 12:28 PM
66776
casso
Joined on 02-23-2011
Posts 6
Control what is displayed in the bottom bar
Reply
Quote
Hi,
I'd like to know if it's possible to control what is displayed in the bottom bar.
I'd only like to display the word and character count.
Thanks
03-21-2011, 3:51 PM
66784
in reply to
66776
Eric
Joined on 08-05-2009
Posts 1,269
Re: Control what is displayed in the bottom bar
Reply
Quote
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
[email protected]
03-22-2011, 4:27 AM
66796
in reply to
66784
casso
Joined on 02-23-2011
Posts 6
Re: Control what is displayed in the bottom bar
Reply
Quote
Hi, that worked, thanks.
03-22-2011, 4:42 PM
66803
in reply to
66796
Eric
Joined on 08-05-2009
Posts 1,269
Re: Control what is displayed in the bottom bar
Reply
Quote
You are welcome.