I have a GridView that has 10 columns populated by CheckBoxes. But instead of using FindControl() is there a way to get the CheckBox.Checked value
FindControl()
CheckBox.Checked
foreach (DataRow row in DataRow row in GridView1.Rows) { foreach (DataColumn c in GridView1.Columns) bool ckbVal = (bool)(row[c.ColumnName]); }