Example #1
0
        protected void Page_Load(object sender, EventArgs e)
        {
            if (!this.IsPostBack)
            {
                string strId = Request.QueryString.Get("id");
                if (strId != null && strId != "")
                {
                    ViewState["UpdateID"] = strId;
                    ExamResultUpdateBLL eruBll           = new ExamResultUpdateBLL();
                    ExamResultUpdate    examResultUpdate = eruBll.GetExamResultUpdate(int.Parse(strId));
                    if (examResultUpdate != null)
                    {
                        this.lblExamineeName.Text = examResultUpdate.EmployeeName;
                        this.LabelExamName.Text   = examResultUpdate.ExamName;
                        this.TextBoxCause.Text    = examResultUpdate.updateCause;
                        this.LabelTime.Text       = examResultUpdate.updateDate.ToString("yyyy-MM-dd");;
                        this.LabelWorkMan.Text    = examResultUpdate.updatePerson;
                        this.TextBoxRemark.Text   = examResultUpdate.Memo;
                        this.LabelNewScore.Text   = examResultUpdate.newScore.ToString() + "ио";
                        this.LabelOldScore.Text   = examResultUpdate.oldScore.ToString() + "ио";
                    }
                }

                string strmode = Request.QueryString.Get("mode");
                if (strmode != null && strmode == "ReadOnly")
                {
                    this.btnsave.Visible = false;
                }
            }
        }
Example #2
0
        protected void btnsave_Click(object sender, ImageClickEventArgs e)
        {
            ExamResultUpdateBLL eruBll = new ExamResultUpdateBLL();

            eruBll.UpdateExamResultUpdate(int.Parse(ViewState["UpdateID"].ToString()), TextBoxCause.Text, TextBoxRemark.Text);

            Response.Write("<script>top.window.opener.form1.Refresh.value='true';top.window.opener.form1.submit();top.window.close();</script>");
        }