| Author: R.M.Phani Kumar 04 Nov 2009 | Member Level: Gold | Rating:  Points: 2 |
On Item Command event of grid view
Check for the Checkbox control using findControl method
and then assign the value
|
| Author: Praveen 04 Nov 2009 | Member Level: Diamond | Rating:  Points: 2 |
hi,
after assigning datasource property to the datagridview
foreach (dataGridViewRow dgvr in DataGridView1.Rows) { // according to the condition { dgvr.Cells[0].Value=true; } }
hope that will give you an idea
|