On postback, you'll need to iterate thru the datagrid.items collection to examine each row's checkbox. Give the checkbox an ID, then you can use the FindControl() method as you iterate thru to get to the checkbox control. You'll need to cast the control returned to a checkbox so you can access the appropriate property.
((CheckBox)DataGrid.Items[x].FindControl("chkCheckbox")).Checked
|