ASP.Net Textbox
-
is it possible to limit the no of line in asp.net textbox???????? i have the problem on this........ :) rajan
-
is it possible to limit the no of line in asp.net textbox???????? i have the problem on this........ :) rajan
rajanandal wrote:
is it possible to limit the no of line in asp.net textbox????????
I afraid, you can't. But you can limit no. of letters using MaxLength property of the TextBox control. And you can use JavaScript to do the job on clientside.
[Venkatesh Mookkan] My: Website | Yahoo Group | Blog Spot
-
is it possible to limit the no of line in asp.net textbox???????? i have the problem on this........ :) rajan
Testbox size can be limited when its mode is "singleline" while if the the mode is multi line you use RegularExpressionValidator> i have mentioned the the re for the textarea. <asp:RegularExpressionValidator ID="revMaxDescription" runat="server" ControlToValidate="txtDescription" ErrorMessage="Test cannot be greater than 100 characters." ValidationExpression="(.|\n){0,100}"/>