<asp:TextBox ID="txtBodySMS" runat="server" Rows="10" TextMode="MultiLine" Width="100%"></asp:TextBox>
这是我的文本框.如何限制用户在其中键入的字符数?
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>