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

点击按钮触发事件调用存储过程1

时间:2019-07-06 17:33:39      阅读:106      评论:0      收藏:0      [点我收藏+]

标签:end   pid   cleanup   catch   null   add   NPU   rgs   cat   

protected void btnAdd_Click(object sender,EventArgs e)

{

  txtEmpID.Text = Coeno.Utility.String.CleanUpInput(txtEmpID.Text); 

  txtEmpName.Text= Coeno.Utility.String.CleanUpInput(txtEmpName.Text);

  txtEmpCardID.Text = Coeno.Utility.String.CleanUpInput(txtEmpCardID.Text);

       --(点击按钮触发事件调用存储过程2)

  string EmpCardID = txtEmpCardID.Text + "-" + txtEmpID.Text;

  if(string.IsNullOrEmpty(txtEmpID.Text))\

  {

    lblMsg.Text = "工号不可为空";

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

    return;

  }

  if(string.IsNullOrEmpty(txtEmpCard.Text))

  {

    lblMsg.Text="卡号不可为空";

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

    return;

  }

  if(txtEmpCardID.Text.Length!=10)

  {

    lblMsg.Text="卡号必须是10位";

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

    return;

  }

  string ReturnStatus = "";

     string ReturnID="";

  string ReturnMsg="";

  try

  {

 

  }

  catch(Exception ed)

  {

  }

}

点击按钮触发事件调用存储过程1

标签:end   pid   cleanup   catch   null   add   NPU   rgs   cat   

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

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