我想将文本框的长度设置为8.当长度为8键时,禁用。还有退格启用。
答案 0 :(得分:2)
对于HTML文本框
<input type="password" id="txtPassword" maxlength="8" />
对于asp.net文本框
<asp:TextBox MaxLength="8" TextMode="Password" runat="server" ID="txtPassword"></asp:TextBox>
对于Windows窗体文本框
txtPassword.MaxLength = 8;
答案 1 :(得分:0)
如果您使用的是ASP.NET,则只需将MaxLength属性设置为8.在任何限制数字字符的文本框上。在Windows窗体或WPF中,TextBox控件也具有MaxLength属性。