Hi,
I have a textbox I have set the Maxlength to it. It works with TextMode SingleLine but not when TextBox is Multiline
<asp:TextBox ID="txtDetails" runat="server" MaxLength = "100" TextMode = "200"></asp:TextBox>
Maxlength does not work for TextMode Multiline as the TextBox is rendered as HTML TextArea which does not support maxlength. Try the following jQuery solution.
Refer
Limit number of characters in an ASP.Net Multiline TextBox using jQuery
© COPYRIGHT 2025 ASPSnippets.com ALL RIGHTS RESERVED.