如何限制文本框中允许的字符数? [英] How to limit the number of characters allowed in a textbox?

查看:57
本文介绍了如何限制文本框中允许的字符数?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

<asp:TextBox ID="txtBodySMS" runat="server" Rows="10"                          
           TextMode="MultiLine" Width="100%"></asp:TextBox>

这是我的文本框.如何限制用户可以在其中输入的字符数?

This is my text box. How do I limit the number of characters a user can type inside it?

推荐答案

这是为我做的.我没有保留MultiLine属性.

This did it for me. I did not keep the MultiLine property.

<asp:TextBox ID="txtBodySMS" runat="server" Rows="10" MaxLength="2" Width="100%"></asp:TextBox>

这篇关于如何限制文本框中允许的字符数?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆