コード例 #1
0
        protected void lbuSubmit_Click(object sender, EventArgs e)
        {
            if (string.IsNullOrEmpty(txtInsertPositionWorkName.Text))
            {
                ScriptManager.RegisterClientScriptBlock(this, this.GetType(), "alertMessage", "alert('กรุณาใส่ ชื่อตำแหน่งในสายงาน')", true);
                return;
            }
            ClassPositionWork pw = new ClassPositionWork();
            pw.POSITION_WORK_NAME = txtInsertPositionWorkName.Text;

            if (pw.CheckUsePositionWorkName())
            {
                pw.InsertPositionWork();
                BindData();
                ClearData();
                ScriptManager.RegisterClientScriptBlock(this, this.GetType(), "alertMessage", "alert('เพิ่มข้อมูลเรียบร้อย')", true);
            }
            else
            {
                ScriptManager.RegisterClientScriptBlock(this, this.GetType(), "alertMessage", "alert('ข้อมูลที่จะเพิ่ม มีอยู่ในระบบแล้ว !')", true);
            }
        }
コード例 #2
0
        protected void modUpdateCommand(Object sender, GridViewUpdateEventArgs e)
        {
            Label lblPositionWorkIDEdit = (Label)GridView1.Rows[e.RowIndex].FindControl("lblPositionWorkIDEdit");
            TextBox txtPositionWorkNameEdit = (TextBox)GridView1.Rows[e.RowIndex].FindControl("txtPositionWorkNameEdit");

            ClassPositionWork pw = new ClassPositionWork(Convert.ToInt32(lblPositionWorkIDEdit.Text), txtPositionWorkNameEdit.Text);

            if (pw.CheckUsePositionWorkName())
            {
                pw.UpdatePositionWork();
                ScriptManager.RegisterClientScriptBlock(this, this.GetType(), "alertMessage", "alert('อัพเดทข้อมูลเรียบร้อย')", true);
                GridView1.EditIndex = -1;
                BindData1();
            }
            else
            {
                ScriptManager.RegisterClientScriptBlock(this, this.GetType(), "alertMessage", "alert('ข้อมูลที่จะอัพเดท มีอยู่ในระบบแล้ว !')", true);
            }
        }