I am using the following code for deleting the checked record.
--- For Each row In Products.Rows
var = Convert.ToInt32 (Products.DataK eys(row.RowInde x).Value)
Dim cb As CheckBox = row.FindControl ("ProductSelect or")
If cb IsNot Nothing And cb.Checked = True Then
'If cb.Checked = True Then
atLeastOneRowDe leted = True
...