Then you would handle the GridView.Select edIndexChanged Event. This event is passed a parameter "e" that is a GridViewSelectE ventArgs type. This contains information about the row that was selected so that you can reference it in your C# code. Once you have a reference to the row you can use the row's FindControl() method to retrieve any controls in the row...or you can access the individual cells.
Comment