Coming from a VB6 background. and using the MsFlexgrid Control, it is a simple matter to click on a row and pass a value from the grid to a variable, so that a table record can be read.

Code:
Dim MyData as string

Private Grid_Click()
      MyData = Grid.TextMatrix(Grid.Row,Grid.Col)
      ShowRecord
End Sub
I need to do the same using a DataGrid using ASP.net

I am attaching a nice project which shows how you can click on an Account Number (RecordID) in a List, and it displays the contents of the record
What I need is to be able to click the DataGrid row to achieve the same thing WebApp.zip

Thanks for any suggestions