SyntaxFix
Write A Post
Hire A Developer
Questions
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 } }