Click here to Skip to main content
15,893,588 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
how to get the Datakeys value of marked checkbox in gridview?
and then fire delete command using these datakeys.
Posted

1 solution

C#
//Loop through all the rows in gridview
foreach(GridViewRow gvrow in gvUserDetails.Rows)
{
    //Finiding checkbox control in gridview for particular row
    CheckBox chkdelete = (CheckBox)gvrow.FindControl("chkdelete");
    //Condition to check checkbox selected or not
    if(chkdelete.Checked)
    {
        //Getting UserId of particular row using datakey value
        int usrid = Convert.ToInt32(gvUserDetails.DataKeys[gvrow.RowIndex].Value);
        
        //Delete logic by using above key value.
    }
}
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900