码迷,mamicode.com
首页 > Windows程序 > 详细

C#--添加对象前 - 身份证号的验证

时间:2020-01-01 12:07:27      阅读:105      评论:0      收藏:0      [点我收藏+]

标签:日期   log   tag   count   sqlhelper   添加   src   title   描述   

验证是否符合通用验证类的要求

调用通用验证类
技术图片


通过数据验证
技术图片

技术图片


验证身份证号是否存在SQL

如果SQL有了身份证信息新增的身份证号不能是重复的
技术图片

编写查询身份证方法
技术图片

 /// <summary>
        /// 查询身份证是否已经存在
        /// </summary>
        /// <param name="idcard"></param>
        /// <returns></returns>
        public bool IsIdCardExisted(string idcard)
        {
            string sql = "Select count(*) from Students where StudentIdNo={0}";
            sql = string.Format(sql, idcard);
            int count = Convert.ToInt32(SQLHelper.GetSingleResult(sql));
            if (count == 1) return true;
            else return false;
        }

通过数据验证

技术图片

SQL已经有了存在的身份证号,新增的身份证号重复不通过

技术图片


验证身份证是否与出生日期吻合

技术图片

技术图片

  //验证身份证号是否和出生日期吻合
            string month = string.Empty;
            string day = string.Empty;
            if(Convert.ToDateTime(this.txtBirthday.Text).Month<10)        
                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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!