C#--添加对象前 - 身份证号的验证
2021-01-20 13:11
标签:日期 log tag count sqlhelper 添加 src title 描述 调用通用验证类 通过数据验证 如果SQL有了身份证信息新增的身份证号不能是重复的 编写查询身份证方法验证是否符合通用验证类的要求
验证身份证号是否存在SQL
///
通过数据验证
SQL已经有了存在的身份证号,新增的身份证号重复不通过
验证身份证是否与出生日期吻合
//验证身份证号是否和出生日期吻合
string month = string.Empty;
string day = string.Empty;
if(Convert.ToDateTime(this.txtBirthday.Text).Month10)
month = "0" + Convert.ToDateTime(this.txtBirthday.Text).Month.ToString();
else
month = Convert.ToDateTime(this.txtBirthday.Text).Month.ToString();
if (Convert.ToDateTime(this.txtBirthday.Text).Day 10)
day = "0" + Convert.ToDateTime(this.txtBirthday.Text).Day.ToString();
else
day = Convert.ToDateTime(this.txtBirthday.Text).Day.ToString();
string birthday = Convert.ToDateTime(this.txtBirthday.Text).Year.ToString() + month + day;
if(!this.txtStuIdNo.Text.Trim().Contains(birthday))
{
MessageBox.Show("身份证号和出生日期不匹配", "验证提示");
this.txtStuIdNo.Focus();
this.txtStuIdNo.SelectAll();
return;
}
C#--添加对象前 - 身份证号的验证
标签:日期 log tag count sqlhelper 添加 src title 描述
原文地址:https://www.cnblogs.com/adozheng/p/12128477.html
上一篇:(70)c# Drawing
下一篇:C#实现文件和目录的复制替换
文章标题:C#--添加对象前 - 身份证号的验证
文章链接:http://soscw.com/index.php/essay/44543.html