如何验证代码中的许多字段?

时间:2014-01-27 10:05:29

标签: c# asp.net validation webforms

我有一个注册页面,有很多提交。其中许多应由用户填写 enter image description here
我在客户端使用RequiredFieldValidatorRegularExpressionValidator进行验证。 我应该在服务器端验证它们吗?怎么样?
我写了这段代码。我使用很多if和else if。它是否正确?

CaptchaControl1.ValidateCaptcha(txtSecureImg.Text);

if (CaptchaControl1.UserValidated)
{
   if (txtFName.Text != string.Empty && txtLName.Text != string.Empty && txtUserName.Text != string.Empty && txtEmail.Text != string.Empty && txtPass.Text != string.Empty && txtCPass.Text != string.Empty && txtSecureImg.Text != string.Empty)
   {
       if (RegEx.EmailValidate(txtEmail.Text) == 1 && RegEx.PasswordValidate(txtPass.Text) == 1 && RegEx.UserName(txtUserName.Text) == 1)
       {
           try
           {
              // insert in database
           }
           catch (Exception)
           {
              lblMsg.Text = "Error";
           }
       }
       else if(RegEx.EmailValidate(txtEmail.Text) == 0)
       {
        EmailRegularExpression.Visible = true;
       }
       else if(RegEx.PasswordValidate(txtPass.Text) == 0)
       {
        passRegularExpression.Visible = true;
       }
       else if(RegEx.UserName(txtUserName.Text) == 0)
       {
        UnameRegularExpression.Visible = true;
        }
   }
   else if(txtFName.Text == string.Empty)
   {
    RequiredFieldValidator1.Visible = true;
   }
    // continue like above for another filed
}
else
{
    lblMsg.Text = "Please insert Secure Image";
}

和:

public static int EmailValidate(string Mail)
{
    int i = 0;
    Regex regExEmail = new Regex(@"\w+([-+.]\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*");
    if (regExEmail.IsMatch(Mail))
        i = 1;
    return i;
}

2 个答案:

答案 0 :(得分:3)

我假设这是Web Forms ......

验证自动运行。您可以使用Page.IsValid属性:msdn

您仍然需要手动检查验证码字段。

CaptchaControl1.ValidateCaptcha(txtSecureImg.Text);

if (CaptchaControl1.UserValidated && Page.IsValid)
{
     // Insert in db.
}

答案 1 :(得分:2)

由于您使用了这些验证程序,因此您无需像代码一样在服务器端验证表单。

但您应该致电Page.Validate(),然后使用Page.IsValid方法检查页面。

来自here

example