本文介绍了如何限制文本框中允许的字符数?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
<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>
这篇关于如何限制文本框中允许的字符数?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!