Wednesday 27 March 2013

How to set maximum length to asp.net multiline textbox?


Set maximum length of a multiline property textbox.

<asp:TextBox ID="txt" runat="server" TextMode="MultiLine" Height="60" onkeypress="if (this.value.length > 10) { return false; }"></asp:TextBox>

No comments:

Post a Comment