how to limit input with textbox multiline?

T

Terry

Hi,

i want to limit input in this textbox up to 2O characters, but i can input a
unlimited amount of characters. How to limit that?

<asp:TextBox ID="txtStreet" runat="server" Width="200px" MaxLength="20"
rows="2" TextMode="MultiLine"/>


Thanks
Terry
 
A

Alexey Smirnov

Hi,

i want to limit input in this textbox up to 2O characters, but i can input a
unlimited amount of characters. How to limit that?

You can't do it using standard properties, for example, there is the
MaxLength property, which has no effect in a multi-line textbox.

Possible workarounds:

1. JavaScript
2. Codebehind
3. CustomValidator

CustomValidator example
http://www.aspexpress.com/tips.asp?action=show&id=89
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top