Re: MaxHTMLLength and UpdatePanel

  •  04-02-2009, 4:36 AM

    Re: MaxHTMLLength and UpdatePanel

    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