private void btnLuu_Click(object sender, EventArgs e) { string str = ""; try { if (temp == 1) { ds.UpDate_DocGia(txtMaDG.Text, txtTenDG.Text, DateTime.Parse(txtNgaySinh.Text), txtLop.Text, txtChucVu.Text, txtSdt.Text, txtGioTinh.Text); MessageBox.Show("sửa thành công!"); btnSua.Enabled = true; btnXoa.Enabled = true; btnThem.Enabled = true; } else if (temp == 0) { str = ds.Insert_DocGia(txtTenDG.Text, DateTime.Parse(txtNgaySinh.Text), txtLop.Text, txtChucVu.Text, txtSdt.Text, txtGioTinh.Text); MessageBox.Show("Thêm thành công!"); btnXoa.Enabled = true; btnSua.Enabled = true; } } catch { MessageBox.Show("Lưu Thất Bại!"); } MoDieuKhien(false); dtGridDocGia.DataSource = ds.HienThi_DocGia(); }