代码之家  ›  专栏  ›  技术社区  ›  madcolor

.NET RegularExpressionValidator帮助(空或超过6个字符)?

  •  0
  • madcolor  · 技术社区  · 15 年前

    我希望接受(6个字符长或不长)的值。

    这是更新表单。如果输入了密码,我想强制输入6个字符。如果没有,我想忽略这个字段。

    这是一个regex,它为我提供了6个字符的部分,还有什么关于处理空字符的帮助吗?

    <asp:RegularExpressionValidator id="rev1" runat="server" SetFocusOnError="True"
    ErrorMessage="Password must be 6 characters long" Display="Dynamic"
    ControlToValidate="TextBox1" ValidationExpression="^[a-zA-Z0-9]{6}$">
    
    5 回复  |  直到 15 年前
        1
  •  2
  •   UserControl    15 年前

    不确定您的问题是否正确,但RegularExpressionValidator不验证空输入。换句话说,如果textbox 1为空page.isvalid将为true。

        2
  •  2
  •   arsenbonbon    15 年前
    ^([a-zA-Z0-9]{6}|)$
    

    你甚至可以把它缩短到

    ^(\w{6}|)$
    

    \ W表示“文字字符”

        3
  •  1
  •   Robert P    15 年前

    可能的解决方案:

    ^[a-zA-Z0-9]{6}$|^$
    

    可以是6个字符,也可以是空的,其他的都不允许。

        4
  •  0
  •   Tomas    15 年前

    我知道这不完全是您要寻找的答案,但我总是在考虑是否可以使用服务器端方法onvalidate将此类验证放入自定义验证程序。

    正则表达式很有趣,对谜语者来说很好,但总有人不理解你在做什么。

    总是尝试在可读性和易于理解的方面出错,特别是如果您预见到自己不会是维护解决方案的人。

    虽然这看起来过于冗长,但我发现从长远来看,这是一种最不悲伤的解决方案。

    我将在ASP页面中使用这样的自定义验证器:

    <asp:CustomValidator ID="rev1" runat="server" 
                ValidateEmptyText="true"
                ControlToValidate="TextBox1" 
                SetFocusOnError="True" 
                Display="Dynamic"
                OnServerValidate="validatePasswordField"
                ErrorMessage="Password must be 6 characters long"/>
    

    在后面的代码中,我会放这样的东西:

    private const int EMPTY_PASSWORD_LENGTH = 0;
    private const int MIN_PASSWORD_LENGTH = 6;
    private const int MAX_PASSWORD_LENGTH = 6;
    
    protected void validatePasswordField(object source, 
                                         ServerValidateEventArgs args) {
        if (source == null) return;
    
        string candidatePassword = TextBox1.Text;
    
        args.IsValid = isValidPasswordText(candidatePassword);
    }
    
    private bool isValidPasswordText(string candidate) {
        return candidate.Length == EMPTY_PASSWORD_LENGTH
            || (candidate.Length >= MIN_PASSWORD_LENGTH 
                && candidate.Length <= MAX_PASSWORD_LENGTH);
    }
    

    实际上,我会将isvalidPasswordText(字符串)定义拉到一个业务层类中,但这更像是一个架构决策。

        5
  •  0
  •   Nirlep    15 年前

    我认为,如果您只想使用验证控件来验证长度和空字符串,那么应该使用customvalidator。

      protected void CustomValidator1_ServerValidate(object source, ServerValidateEventArgs args)
    {
        string txtpassword = txtboxPassword.Text;
        if (txtpassword == string.Empty || txtpassword.Length == 6)
        {
            args.IsValid = true;
        }
        else
        {
            args.IsValid = false;
        }
    }
    
    protected void Button1_Click(object sender, EventArgs e)
    {
        if (Page.IsValid)
        {
            Response.Redirect("Next.aspx");
        }
    }