Showing posts with label Others. Show all posts
Showing posts with label Others. Show all posts

Wednesday, 27 March 2013

How to set maximum length to textarea in html


 Set maximum length to textarea in html
<textarea rows="3" cols="10" onkeypress="if (this.value.length > 10) { return false; }" ></textarea>

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>