protected void btnInsert_Click(object sender, EventArgs e) { TinhEntity te = new TinhEntity(); te.sTentinh = txtTentinh.Text; te.sKyhieu = txtKyhieu.Text; TinhBRL.Add(te); reset(); napgrvTinh(); Response.Write("<script>alert('Đăng ký thành công!');</script>"); }
protected void btnUpdate_Click(object sender, EventArgs e) { TinhEntity t = new TinhEntity(); t.PK_iTinhID = Int16.Parse(Session["ID"].ToString()); t.sTentinh = txtTentinh.Text; t.sKyhieu = txtKyhieu.Text; TinhBRL.Edit(t); Response.Write("<script>alert('Cập nhật thành công!');</script>"); napgrvTinh(); reset(); }
protected void btnOK_Click(object sender, EventArgs e) { if (Page.IsValid) { try { TinhEntity oTinh = new TinhEntity(); oTinh.sTentinh = txtTen.Text; oTinh.sKyhieu = txtKyHieu.Text; oTinh.ISO31662 = txtISO31662.Text; if (btnOK.CommandName == "Edit") { short TinhID = Convert.ToInt16(btnOK.CommandArgument); oTinh.PK_iTinhID = TinhID; TinhBRL.Edit(oTinh); btnOK.CausesValidation = true; lblThongbao.Text = "Cập nhật thành công"; } else { int TinhAddID = TinhBRL.Add(oTinh); lblThongbao.Text = "Thêm thành công"; } //Nạp lại dữ liệu pnAdd.Visible = false; napgrvTinh(); } catch (Exception ex) { Response.Write("<script language=\"javascript\">alert('" + ex.Message + "');location='Default.aspx?page=TinhManager';</script>"); } } }