Topbar
Topbar
Sign in
|
Join
|
Client Center
Home
Products
Client Center
Contact
Purchase
Support forums
»
Products
»
Cute Editor for .NET
»
Re: MaxHTMLLength and UpdatePanel
Re: MaxHTMLLength and UpdatePanel
04-02-2009, 4:36 AM
Kenneth
Joined on 02-13-2008
Posts 3,886
Re: MaxHTMLLength and UpdatePanel
Reply
Quote
Hi BobL,
Please tyr this way:
protected void submit_Click(object sender, EventArgs e)
{
if(editor1.Text.Length>5000)
{
//do not save
}
}
When text more than a value, stop doing anything
Regards,
Ken
View Complete Thread