protected void GridView2_RowDeleting(object sender, GridViewDeleteEventArgs e)
        {
            int          ma        = int.Parse(GridView2.DataKeys[e.RowIndex].Value.ToString());
            DropDownList dr        = (DropDownList)GridView2.Rows[e.RowIndex].FindControl("DropDownList3");
            int          tinhtrang = -1;

            int.TryParse(dr.SelectedValue, out tinhtrang);
            try
            {
                YCWebServiceBUS.updateRequest(ma, tinhtrang);
                lbupdateResult.ForeColor = Color.Green;
                lbupdateResult.Text      = "Cập nhật thành công";
            }
            catch (Exception ex)
            {
                lbupdateResult.ForeColor = Color.Red;
                lbupdateResult.Text      = "Chưa cập nhật được";
            }
        }