Possible Duplicate:
Specifying maxlength for multiline textbox
How to set maxlength for multiline TextBox?
I want to limit the number of characters of a text box.
For this i used
<asp:textbox id="txtAdmissionDate" runat="server" MaxLength="5"> </asp:textbox>
It's working fine. But when i add TextMode="MultiLine"
attribute to it, the maxlenth is not working.
Please Help