码迷,mamicode.com
首页 > 其他好文 > 详细

VS2015按钮方法

时间:2019-05-25 12:43:51      阅读:141      评论:0      收藏:0      [点我收藏+]

标签:trim   mpi   vs2015   cte   send   eve   count   ted   input   

protected void btnRoleMemberAdd_Click(object sender ,EventArgs e)

{

  txtEmpID.Text=Coeno.utility.string.CleanUpInput(textEmpID.Text.Trim());     --命名空间,类、方法名

  if(string.IsNullorEmpty(DropRoles.SelectedValue.Trim()))

  {

    LabMsg.Text= “无法新增至数据库:请选择一个角色进行新增" 

    LabMsg.ForeColor=System.Drawing.Color.Red;

    return;

  }

  //检查是否有输入员工工号

  if(txtEmpID.Text==" ")

  {

    LabMsg.Text= "请确认是否有输入员工工号!!!" ;

    LabMsg.ForeColor=System.Drawing.Color.Red;

  }

  //检查员工工号是否存在

  if(Coeno.Account.Users.IsEmpIDExist(txtEmpID.Text)==0)

  {

    LabMsg.Text= "员工工号不存在!!!" ;

    LabMsg.ForeColor=System.Drawing.Color.Red;

    return;

  }

  if(Coeno.Main.Roles.)

}

VS2015按钮方法

标签:trim   mpi   vs2015   cte   send   eve   count   ted   input   

原文地址:https://www.cnblogs.com/ximi07/p/10921962.html

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