コード例 #1
0
        private void btnUpdate_Click(object sender, EventArgs e)
        {
            String err = "";

            if (!nguoiDungBLL.UpdateNguoiDung(ref err, txtTaiKhoan.Text.Trim(),
                                              txtPassword.Text.Trim(), txtHoTen.Text.Trim(), txtNoiO.Text.Trim()
                                              , txtDienThoai.Text.Trim(), tbGioiTinh.Text, tbChucVu.SelectedValue.ToString(),
                                              txtDanToc.Text.Trim(),
                                              dtpNgaySinh.Value.ToString("yyyy/MM/dd"), dtpNgayVaoLam.Value.ToString("yyyy/MM/dd"), Convert.ToInt32(Math.Round(nudLuongGio.Value))))
            {
                MessageBox.Show("Cập nhật thất bại !!!");
            }
            else
            {
                MessageBox.Show("Cập nhật thành công !!!");
            }
            LoadData();
        }