EmpPers.aspx.cs
上传用户:autodoor
上传日期:2022-08-04
资源大小:9973k
文件大小:8k
- using System;
- using System.Collections;
- using System.ComponentModel;
- using System.Data;
- using System.Drawing;
- using System.Web;
- using System.Web.SessionState;
- using System.Web.UI;
- using System.Web.UI.WebControls;
- using System.Web.UI.HtmlControls;
- using qminoa.BLL;
- using qminoa.Common;
- using qminoa.Common.Data;
- namespace qminoa.Webs.MR
- {
- public class EmpMr31 : qminoa.Webs.PageBase
- {
- protected System.Web.UI.WebControls.Label lblLast;
- protected System.Web.UI.WebControls.Label lblEmpID;
- protected System.Web.UI.WebControls.ValidationSummary ValidationSummary1;
- protected System.Web.UI.WebControls.Label lblErr;
- protected System.Web.UI.WebControls.ImageButton cmdExit;
- protected System.Web.UI.WebControls.ImageButton cmdSaveExi;
- protected System.Web.UI.WebControls.ImageButton cmdSaveCon;
- protected System.Web.UI.WebControls.RangeValidator RangeValidator1;
- protected System.Web.UI.WebControls.RegularExpressionValidator RegularExpressionValidator1;
- protected System.Web.UI.WebControls.TextBox txtPersNote;
- protected System.Web.UI.WebControls.Label Label13;
- protected System.Web.UI.WebControls.TextBox txtParty;
- protected System.Web.UI.WebControls.Label Label12;
- protected System.Web.UI.WebControls.TextBox txtTel2;
- protected System.Web.UI.WebControls.Label Label11;
- protected System.Web.UI.WebControls.TextBox txtTel1;
- protected System.Web.UI.WebControls.Label Label10;
- protected System.Web.UI.WebControls.TextBox txtNaPlace;
- protected System.Web.UI.WebControls.Label Label9;
- protected System.Web.UI.WebControls.TextBox txtNation;
- protected System.Web.UI.WebControls.Label Label8;
- protected System.Web.UI.WebControls.TextBox txtIDCardNo;
- protected System.Web.UI.WebControls.Label Label7;
- protected System.Web.UI.WebControls.TextBox txtBirthDay;
- protected System.Web.UI.WebControls.Label Label6;
- protected System.Web.UI.WebControls.TextBox txtPostCode;
- protected System.Web.UI.WebControls.Label Label5;
- protected System.Web.UI.WebControls.TextBox txtStreet;
- protected System.Web.UI.WebControls.Label Label4;
- protected System.Web.UI.WebControls.TextBox txtDistrict;
- protected System.Web.UI.WebControls.Label Label3;
- protected System.Web.UI.WebControls.TextBox txtCity;
- protected System.Web.UI.WebControls.Label Label2;
- protected System.Web.UI.WebControls.TextBox txtProvince;
- protected System.Web.UI.WebControls.Label Label1;
- protected System.Web.UI.WebControls.ImageButton cmdMr36;
- protected System.Web.UI.WebControls.ImageButton cmdMr35;
- protected System.Web.UI.WebControls.ImageButton cmdMr34;
- protected System.Web.UI.WebControls.ImageButton cmdMr33;
- protected System.Web.UI.WebControls.ImageButton cmdMr32;
- protected System.Web.UI.WebControls.ImageButton cmdMR31;
- protected System.Web.UI.WebControls.ImageButton cmdMr3;
-
- private void Page_Load(object sender, System.EventArgs e)
- {
- this.PageBegin("人员管理",true);
- if(Page.IsPostBack)
- {
- return ;
- }
- DataBind();
- FillPage();
- }
- private void FillPage()
- {
- int empID;
- if(lblEmpID.Text==string.Empty)
- {
- empID = Convert.ToInt16(Request.QueryString["PARAM_EMPID"]);
- lblEmpID.Text = empID.ToString();
- }
- else
- {
- empID = Convert.ToInt16(lblEmpID.Text,10);
- }
- DataTable empTB = (new EmpSystem()).GetEmpTB_By_EmpID(empID);
- DataRow row = empTB.Rows[0];
- txtProvince.Text = row[EmpBaseData.PROVINCE_FIELD].ToString();
- txtCity.Text = row[EmpBaseData.CITY_FIELD].ToString();
- txtDistrict.Text = row[EmpBaseData.DISTRICT_FIELD].ToString();
- txtStreet.Text = row[EmpBaseData.STREET_FIELD].ToString();
- txtPostCode.Text = row[EmpBaseData.POSTCODE_FIELD].ToString();
- txtNaPlace.Text = row[EmpBaseData.NAPLACE_FIELD].ToString();
- txtTel1.Text = row[EmpBaseData.TEL1_FIELD].ToString();
- txtTel2.Text = row[EmpBaseData.TEL2_FIELD].ToString();
- txtParty.Text = row[EmpBaseData.PARTY_FIELD].ToString();
- if(row[EmpBaseData.BIRTHDAY_FIELD]!=DBNull.Value)
- {
- txtBirthDay.Text = ((DateTime)row[EmpBaseData.BIRTHDAY_FIELD]).ToString("d");;
- }
- txtIDCardNo.Text = row[EmpBaseData.IDCARDNO_FIELD].ToString();
- txtPersNote.Text = row[EmpBaseData.PERSNOTE_FIELD].ToString();
- }
- private bool SaveEmpInf()
- {
- if(this.EmpRightCode >= 3)
- {
- EmpBaseData empData = new EmpBaseData();
- DataTable empTB = empData.Tables[EmpBaseData.EMP_TABLE_NAME];
- DataRow row = empTB.NewRow();
- empTB.Rows.Add(row);
- empTB.AcceptChanges();
- row[EmpBaseData.EMPID_FIELD] = Convert.ToInt16(lblEmpID.Text,10);
- row[EmpBaseData.PROVINCE_FIELD] = txtProvince.Text;
- row[EmpBaseData.CITY_FIELD] = txtCity.Text;
- row[EmpBaseData.DISTRICT_FIELD] = txtDistrict.Text;
- row[EmpBaseData.STREET_FIELD] = txtStreet.Text;
- row[EmpBaseData.POSTCODE_FIELD] = txtPostCode.Text;
- row[EmpBaseData.NAPLACE_FIELD] = txtNaPlace.Text ;
- row[EmpBaseData.TEL1_FIELD] = txtTel1.Text;
- row[EmpBaseData.TEL2_FIELD] = txtTel2.Text;
- row[EmpBaseData.PARTY_FIELD] = txtParty.Text;
-
- row[EmpBaseData.IDCARDNO_FIELD] = txtIDCardNo.Text;
- row[EmpBaseData.PERSNOTE_FIELD] = txtPersNote.Text;
- if(txtBirthDay.Text!=string.Empty)
- {
- row[EmpBaseData.BIRTHDAY_FIELD] = txtBirthDay.Text;
- }
- return (new EmpSystem()).UpdateEmpPersInf(empData);
- }
- else
- {
- JScript.Alert("您没有权限进行此操作!");
- return false;
- }
- }
- #region Web Form Designer generated code
- override protected void OnInit(EventArgs e)
- {
- //
- // CODEGEN:该调用是 ASP.NET Web 窗体设计器所必需的。
- //
- InitializeComponent();
- base.OnInit(e);
- }
-
- /// <summary>
- /// 设计器支持所需的方法 - 不要使用代码编辑器修改
- /// 此方法的内容。
- /// </summary>
- private void InitializeComponent()
- {
- this.cmdMr3.Click += new System.Web.UI.ImageClickEventHandler(this.cmdMr3_Click);
- this.cmdMr32.Click += new System.Web.UI.ImageClickEventHandler(this.cmdMr32_Click);
- this.cmdMr33.Click += new System.Web.UI.ImageClickEventHandler(this.cmdMr33_Click);
- this.cmdMr34.Click += new System.Web.UI.ImageClickEventHandler(this.cmdMr34_Click);
- this.cmdMr35.Click += new System.Web.UI.ImageClickEventHandler(this.cmdMr35_Click);
- this.cmdMr36.Click += new System.Web.UI.ImageClickEventHandler(this.cmdMr36_Click);
- this.cmdSaveCon.Click += new System.Web.UI.ImageClickEventHandler(this.cmdSaveCon_Click);
- this.cmdSaveExi.Click += new System.Web.UI.ImageClickEventHandler(this.cmdSaveExi_Click);
- this.cmdExit.Click += new System.Web.UI.ImageClickEventHandler(this.cmdExit_Click);
- this.Load += new System.EventHandler(this.Page_Load);
- }
- #endregion
- private void cmdSaveCon_Click(object sender, System.Web.UI.ImageClickEventArgs e)
- {
- if(!SaveEmpInf())
- JScript.Alert("操作失败!");
- else
- JScript.Alert("操作成功!");
- }
- private void cmdMR31_Click(object sender, System.Web.UI.ImageClickEventArgs e)
- {
-
- }
- private void cmdMr3_Click(object sender, System.Web.UI.ImageClickEventArgs e)
- {
- Response.Redirect("EmpBase.aspx?EmpID="+lblEmpID.Text,false);
- }
- private void cmdMr32_Click(object sender, System.Web.UI.ImageClickEventArgs e)
- {
- Response.Redirect("EmpWelInf.aspx?PARAM_EMPID="+Request.QueryString["PARAM_EMPID"].ToString(),false);
- }
- private void cmdExit_Click(object sender, System.Web.UI.ImageClickEventArgs e)
- {
- Response.Redirect("EmpInf.aspx",false);
- }
- private void cmdSaveExi_Click(object sender, System.Web.UI.ImageClickEventArgs e)
- {
- if(!SaveEmpInf())
- JScript.Alert("操作失败!");
- else
- Response.Redirect("EmpInf.aspx",false);
- }
- private void cmdMr33_Click(object sender, System.Web.UI.ImageClickEventArgs e)
- {
- Response.Redirect("EmpEdu.aspx?PARAM_EMPID="+Request.QueryString["PARAM_EMPID"].ToString(),false);
- }
- private void cmdMr34_Click(object sender, System.Web.UI.ImageClickEventArgs e)
- {
- Response.Redirect("EmpVisaInf.aspx?PARAM_EMPID="+Request.QueryString["PARAM_EMPID"].ToString(),false);
- }
- private void cmdMr35_Click(object sender, System.Web.UI.ImageClickEventArgs e)
- {
- Response.Redirect("EmpArcInf.aspx?PARAM_EMPID="+Request.QueryString["PARAM_EMPID"].ToString(),false);
- }
- private void cmdMr36_Click(object sender, System.Web.UI.ImageClickEventArgs e)
- {
- Response.Redirect("EmpContInf.aspx?PARAM_EMPID="+Request.QueryString["PARAM_EMPID"].ToString(),false);
- }
- }
- }