foreach (GridViewRow gvrow in grdcheck.Rows)
{
CheckBox chkbx = ((CheckBox)gvrow.Cells[0].FindControl("CheckBoxStatus"));
if (chkbx.Checked == true)
{
Session[chkbx.Text] = chkbx.Text;
metroarea = metroarea +"," + chkbx.Text;
int result = CouponObj.MetroAreaInsert(chkbx.Text);
}
}
{
CheckBox chkbx = ((CheckBox)gvrow.Cells[0].FindControl("CheckBoxStatus"));
if (chkbx.Checked == true)
{
Session[chkbx.Text] = chkbx.Text;
metroarea = metroarea +"," + chkbx.Text;
int result = CouponObj.MetroAreaInsert(chkbx.Text);
}
}
Comments