/// <summary> /// 获取职位类别名称 /// </summary> protected string GetJobTypeName(int proinfotype) { using (BLLJobType bll = new BLLJobType()) { JobType obj = new JobType(); if (proinfotype > 0) { obj = bll.GetSingle(proinfotype); if (obj != null) { return(obj.JobTypeName.ToString()); } } return(""); } }
protected void btnSubmit_Click(object sender, EventArgs e) { using (BLLJobType bll = new BLLJobType()) { JobType obj = new JobType(); if (id > 0) { obj = bll.GetSingle(id); obj.ID = id; } obj.JobTypeName = txtJobTypeName.Text.Trim().ToString(); obj.Remarks = txtRemarks.Text.ToString(); if (rbtnIsChinese.Checked == true) { obj.IsEnglish = 1; } else if (rbtnIsEnglish.Checked == true) { obj.IsEnglish = 2; } else { ShowMsg("请选择语言类别!"); return; } bll.Save(obj); if (bll.IsFail) { ExceptionManager.ShowErrorMsg(this, bll.DevNetException); } else { JSMsg.ShowWinRedirect(this, "保存成功", "cpJobTypeList.aspx"); } } }
private void setInfo() { if (id > 0) { using (BLLJobType bll = new BLLJobType()) { JobType cpinfor = bll.GetSingle(id); if (cpinfor != null) { if (cpinfor.IsEnglish == 1) { rbtnIsChinese.Checked = true; } else if (cpinfor.IsEnglish == 2) { rbtnIsEnglish.Checked = true; } txtJobTypeName.Text = cpinfor.JobTypeName; txtRemarks.Text = cpinfor.Remarks; } } } }