asp.net – 如何限制文本框中允许的字符数?

前端之家收集整理的这篇文章主要介绍了asp.net – 如何限制文本框中允许的字符数?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
<asp:TextBox ID="txtBodySMS" runat="server" Rows="10"                          
           TextMode="MultiLine" Width="100%"></asp:TextBox>

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

解决方法

MaxLength不适用于使用TextMode =“MultiLine”的ASP.NET到TextBoxes.一个简单的方法是保持MultiLine标记添加
onkeypress="return this.value.length<=10"

10是极限.像这样:

<asp:TextBox ID="txtBodySMS" runat="server" Rows="10" onkeypress="return this.value.length<=10" TextMode="MultiLine" Width="100%"></asp:TextBox>
原文链接:https://www.f2er.com/aspnet/252046.html

猜你在找的asp.Net相关文章