GridView.ExtractRowValues Method
.NET Framework 3.0
Retrieves the values of each field declared within the specified row and stores them in the specified IOrderedDictionary object.
Namespace: System.Web.UI.WebControls
Assembly: System.Web (in system.web.dll)
Assembly: System.Web (in system.web.dll)
protected: virtual void ExtractRowValues ( IOrderedDictionary^ fieldValues, GridViewRow^ row, bool includeReadOnlyFields, bool includePrimaryKey )
protected void ExtractRowValues ( IOrderedDictionary fieldValues, GridViewRow row, boolean includeReadOnlyFields, boolean includePrimaryKey )
protected function ExtractRowValues ( fieldValues : IOrderedDictionary, row : GridViewRow, includeReadOnlyFields : boolean, includePrimaryKey : boolean )
Not applicable.
Parameters
- fieldValues
An IOrderedDictionary used to store the field values.
- row
The GridViewRow from which to retrieve the field values.
- includeReadOnlyFields
true to include read-only fields; otherwise, false.
- includePrimaryKey
true to include the primary key field or fields; otherwise, false.
The ExtractRowValues method is a helper method called by the GridView control to retrieve the values of each field declared within the row specified by the row parameter. You can specify whether the extracted values include read-only fields and key fields by using the includeReadOnlyFields and includePrimaryKey parameters, respectively.
Notes to Inheritors: When extending the GridView class, you can override this method to create your own routine to retrieve the field values.Community Additions
ADD
Show: