Exemplo n.º 1
0
        protected void lbuSubmit_Click(object sender, EventArgs e)
        {
            if (string.IsNullOrEmpty(txtInsertBloodName.Text))
            {
                ScriptManager.RegisterClientScriptBlock(this, this.GetType(), "alertMessage", "alert('กรุณาใส่ ชื่อกรุ๊ปเลือด')", true);
                return;
            }
            ClassBlood b = new ClassBlood();
            b.BLOOD_NAME = txtInsertBloodName.Text;

            if (b.CheckUseBloodName())
            {
                b.InsertBlood();
                BindData();
                ClearData();
                ScriptManager.RegisterClientScriptBlock(this, this.GetType(), "alertMessage", "alert('เพิ่มข้อมูลเรียบร้อย')", true);
            }
            else
            {
                ScriptManager.RegisterClientScriptBlock(this, this.GetType(), "alertMessage", "alert('ข้อมูลที่จะเพิ่ม มีอยู่ในระบบแล้ว !')", true);
            }
        }
Exemplo n.º 2
0
        protected void modUpdateCommand(Object sender, GridViewUpdateEventArgs e)
        {
            Label lblBloodIDEDIT = (Label)GridView1.Rows[e.RowIndex].FindControl("lblBloodIDEDIT");
            TextBox txtBloodNameEDIT = (TextBox)GridView1.Rows[e.RowIndex].FindControl("txtBloodNameEDIT");

            ClassBlood b = new ClassBlood(Convert.ToInt32(lblBloodIDEDIT.Text), txtBloodNameEDIT.Text);

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