GridView::DataKeys Property
Gets a collection of DataKey objects that represent the data key value of each row in a GridView control.
Assembly: System.Web (in System.Web.dll)
public: [BrowsableAttribute(false)] property DataKeyArray^ DataKeys { virtual DataKeyArray^ get(); }
Property Value
Type: System.Web.UI.WebControls::DataKeyArray^A DataKeyArray that contains the data key of each row in a GridView control.
When the DataKeyNames property is set, the GridView control automatically creates a DataKey object for each row in the control. The DataKey object contains the values of the field or fields specified in the DataKeyNames property. The DataKey objects are then added to the control's DataKeys collection. Use the DataKeys property to retrieve the DataKey object for a specific data row in the GridView control.
Note |
|---|
You can use the SelectedDataKey property to retrieve the DataKey object for the currently selected row. You can also use the SelectedValue property to retrieve the data key value for the currently selected row directly. |
Available since 2.0
