Пример #1
0
        protected void GridView1_RowDeleting(object sender, GridViewDeleteEventArgs e)
        {
            string taiKhoan = GridView1.Rows[e.RowIndex].Cells[0].Text;
            bool   result   = cn.Deletequanlynv(taiKhoan);

            if (result)
            {
                lblThongbao.Text = "Xóa thành công";
                DoDuLieuVaoGridView();
            }
            else
            {
                lblThongbao.Text = "Có lỗi";
            }
        }