GridView::SelectedRow Property
.NET Framework (current version)
Gets a reference to a GridViewRow object that represents the selected row in the control.
Assembly: System.Web (in System.Web.dll)
public: [BrowsableAttribute(false)] property GridViewRow^ SelectedRow { virtual GridViewRow^ get(); }
Property Value
Type: System.Web.UI.WebControls::GridViewRow^A GridViewRow that represents the selected row in the control.
When a row is selected in a GridView control, use the SelectedRow property to retrieve the GridViewRow object that represents that row.
Note |
|---|
This is the same as retrieving the GridViewRow object at the index specified by the SelectedIndex property from the Rows collection. |
This object can then be used to access the properties of the selected row.
The following example demonstrates how to use the SelectedRow property to access the properties of the GridViewRow object that represents the selected row in the GridView control.
.NET Framework
Available since 2.0
Available since 2.0
Show:
