I currently have a GridView which displays data from a Student Table, here is my Grid and associated SQLDataSource;
you have to iterate gridview Rows
for (int count = 0; count < grd.Rows.Count; count++) { if (((CheckBox)grd.Rows[count].FindControl("yourCheckboxID")).Checked) { ((Label)grd.Rows[count].FindControl("labelID")).Text } }