Loop through the rows
Code:
For Each row as GridViewRow In GridView1.Rows
Find the checkbox in the row
Code:
Dim cbx As CheckBox = GridView1.FindControl("CheckBox1")
Check if the CheckBox is checked and then do something with it.
Code:
If cbx.Checked Then...