多个文本框上的正则表达式验证? c#asp.net

时间:2011-04-27 17:57:34

标签: c# jquery asp.net regex visual-studio

编辑02/05/2011

好的,所以我需要在我的验证客户端,所以我需要在c#下面要求的实际上是在jquery。我也将验证服务器端,所以我希望在那里有更多的输入。

原始问题

好吧,我今天在一个真正的noob问题旅行!!!

我之前的问题是针对特定的正则表达式。现在我有它,它的工作原理..我可以在多个文本框上滚动它吗?我不想使用多个正则表达式验证工具,因为它们会使我的设计空间变得混乱,我认为这不是一个非常优雅的解决方案(它适用于学位项目)

我能写一种方法吗?

public validator(string)
{
   doessomething.tostring
   return true/false
}

并通过

访问
if (validator(txtsomething.text.tostring()) = true)
{
  Dothis
}

else
{
  dothis
}

如果我的问题是垃圾,请耐心等待:) Thanks``

5 个答案:

答案 0 :(得分:3)

如何创建自定义控件?我已经编辑了我的答案,包括jQuery和服务器端验证。我不知道你正在使用什么正则表达式,所以我只使用了一个简单的字母测试。

javascript(也包括jQuery文件):

<script language="javascript" type="text/javascript">
    function validateText(source, args) {

        var allTextFieldsValid = true;

        $(".noNumbers").each(function () {
            if (!/^[a-zA-Z]*$/.test(this.value)) {
                allTextFieldsValid = false;
            }
        });

        args.IsValid = allTextFieldsValid;
    }

</script>

.aspx页面:

// set a specific css class on the textboxes you want to check so that jQuery can
//  find them easily
<asp:TextBox ID="TextBox1" runat="server" CssClass="noNumbers"></asp:TextBox>
<asp:TextBox ID="TextBox2" runat="server" CssClass="noNumbers"></asp:TextBox>
<asp:Button ID="SubmitButton" runat="server" Text="submit" OnClick="Submit_Click" />

<asp:CustomValidator ID="MyValidator" runat="server" 
        OnServerValidate="Text_Validate" Text="Oops, sorry, no numbers!" 
        ClientValidationFunction="validateText"></asp:CustomValidator>
代码背后的代码:

protected void Submit_Click(object sender, EventArgs e)
    {
        if (Page.IsValid)
        {
            // do stuff
        }
        else
        {
            // do other stuff
        }
    }

    protected void Text_Validate(object source, ServerValidateEventArgs args)
    {
        args.IsValid = true;

    // I've done each textbox by id, but depending on how many you might want to loop through the controls instead

        if (!IsTextValid(TextBox1.Text))
        {
            args.IsValid = false;
        }

        if (!IsTextValid(TextBox2.Text))
        {
            args.IsValid = false;
        }
    }

    private bool IsTextValid(string myTextValue)
    {
        string myRegexString = @"^[a-zA-Z]*$";

        return Regex.IsMatch(myTextValue, myRegexString);
    }

希望这有帮助!

答案 1 :(得分:0)

我不确定你的确切意图,但你似乎基本上是正确的:

每个人都假设您正在处理“TextBoxChanged”事件,您只需执行以下操作:

if(!string.IsNullOrEmpty(MyTextBox.Text))
{
  if(ValidateInput(MyTextBox.Text)
  { 
    [do stuff here]
  }
  else
  {
    [do other stuff here]
  }
}

然后您的ValidateInput(string stringToCheck)方法看起来像:

private bool ValidateInput(string stringToCheck)
{
    string patern = [your regex patern]
  //Check to make sure that I've got this method call right- you want to make sure
  //that there are matches, basically
    if(Regex.Matches(patern, stringToCheck).Count >= 1) return true;
    return false;
}

那会说“如果我的正则表达式有任何匹配 - 做一件事,如果没有,做其他事情”

答案 2 :(得分:0)

好吧,您可以在表单/页面中找到所有文本框控件并应用验证程序。

假设您使用的是winforms应用,请尝试以下操作:

// .Net Framework 3.5

foreach (TextBox textBox in MyForm.Controls.OfType<TextBox>())
{
    if (validator(textBox.Text) == true)
    {
        // Do this
    }
    else
    {
        // Do that
    }
}

如果有帮助,请告诉我。

PS:您可能需要为控件容器做一些递归工作= /

答案 3 :(得分:0)

为所有TextBox控件编写事件处理程序:

OnLoad事件处理程序:

  foreach (Control ctrl in Controls) {
    TextBox tbox = ctrl as TextBox;
    if (tbox != null) {
      tbox.TextChanged += new EventHandler(TextBox_TextChanged);
    }
  }

void TextBox_TextChanged(object sender, EventArgs e) {
  TextBox tbox = sender as TextBox;
  if (tbox != null) {
    if (validator(tbox.Text)) {
      // DoThis
    } else {
      // DoThat
    }
  }
}

答案 4 :(得分:0)

考虑扩展正则表达式验证器。

Developing a Validator Control