Re: ASP.NET Data Controls hi,
Use the GridView.RowUpdating event instead and do something like this:
Protected Sub GridView1_RowUpdating(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.GridViewUpdateEventArgs) Handles GridView1.RowUpdating
Dim gvr As GridViewRow = GridView1.Rows(e.RowIndex)
Dim chk As CheckBox = CType(gvr.Cells(2).Controls(0), CheckBox)
If chk.Checked Then
'Create email message
End If
End Sub
__________________ Venkat knowledge is Power |