我有一个文本框供用户添加密码,我想阻止用户在文本框中添加一个字符,我该怎么做?
答案 0 :(得分:0)
使用类似的验证器:
<asp:RangeValidator
ControlToValidate="tbox1"
MinimumValue="1"
MaximumValue="100"
Type="Integer"
EnableClientScript="false"
Text="The value must be from 1 to 100!"
runat="server" />
或
<asp:RegularExpressionValidator
ID="regexTextBox1"
ControlToValidate="YourTextBoxID"
runat="server"
ValidationExpression="^[\s\S]{1,200}$"
Text="200 characters max" />