how to limit user input into the multiline text box????

  • Thread starter Thread starter cw
  • Start date Start date
C

cw

Hi all,

Is anyone have an idea that limit message length input by user into
textbox. I'hv tried the maxlength property by setting it to 150, but it
seems like not working..,

regards
 
Provided your textbox's TextMode is set to SingleLine or Password,
(MultiLine causes the control to be rendered as a textarea tag, where the
maxlength is ignored), the maxlength should limit the number of characters
allowed.
 
Back
Top