• C# 中errorProvider控件的使用 和 正规表达式的使用


    string strErrorMes = null;

    if
    (Validates()) { XXXXX } public bool Validates() { if (this.txtUserName.Text == "") { strErrorMes = "姓名不能为空!"; this.txtUserName.Focus(); errorProvider.SetError(this.txtUserName, strErrorMes); //给errorProvider控件赋值 } if (this.txtNativePlace.Text == "") { strErrorMes = "籍贯不能为空!"; this.txtNativePlace.Focus(); errorProvider.SetError(this.txtNativePlace, strErrorMes); //给errorProvider控件赋值 } if (this.txtphone.Text == "") { strErrorMes = "电话不能为空!"; this.txtphone.Focus(); errorProvider.SetError(this.txtphone, strErrorMes); //给errorProvider控件赋值 } else { string regStr = @"((d{11})|^((d{7,8})|(d{4}|d{3})-(d{7,8})|(d{4}|d{3})-(d{7,8})-(d{4}|d{3}|d{2}|d{1})|(d{7,8})-(d{4}|d{3}|d{2}|d{1}))$)"; bool isRightNo = Regex.IsMatch(txtphone.Text.Trim(), regStr); if (!isRightNo) { strErrorMes = "电话格式错误"; txtphone.Focus(); errorProvider.SetError(txtphone, strErrorMes); } } if (strErrorMes != null) {
                  strErrorMes = null;

    return false;
                }
                return true;
            }
  • 相关阅读:
    1015: [JSOI2008]星球大战starwar
    Tyvj P1813 [JSOI2008]海战训练
    1012: [JSOI2008]最大数maxnumber
    1430: 小猴打架
    1270: [BeijingWc2008]雷涛的小猫
    1202: [HNOI2005]狡猾的商人
    1059: [ZJOI2007]矩阵游戏
    3039: 玉蟾宫
    1303: [CQOI2009]中位数图
    1002: [FJOI2007]轮状病毒
  • 原文地址:https://www.cnblogs.com/zhangyonglvdaomei/p/3897433.html
Copyright © 2020-2023  润新知