Please note: In an effort to better serve you, we are in the process of restructuring DevCenter. In the process, we have moved many items that you may be used to finding in DevCenter over to the Main Site. If you are having trouble locating something, please try looking at the following places:
How do I get the selected row from a grid? I do not want to respond to an event, rather I just want to get the selected row of the grid during another event that may be fired by another control.
Assuming there is a postback and you are looking to get the selected row on the serverside, use
This will give you a collection of selected rows. You can also use
to give you the single active row.