This documentation is archived and is not being maintained.

TemplateField::ExtractValuesFromCell Method

Extracts the value of the data control fields as specified by one or more two-way binding statements (DataBind) from the current table cell and adds the values to the specified IOrderedDictionary collection.

Namespace:  System.Web.UI.WebControls
Assembly:  System.Web (in System.Web.dll)

public:
virtual void ExtractValuesFromCell(
	IOrderedDictionary^ dictionary, 
	DataControlFieldCell^ cell, 
	DataControlRowState rowState, 
	bool includeReadOnly
) override

Parameters

dictionary
Type: System.Collections.Specialized::IOrderedDictionary
An IOrderedDictionary.
cell
Type: System.Web.UI.WebControls::DataControlFieldCell
A DataControlFieldCell that contains the text or controls of the TemplateField.
rowState
Type: System.Web.UI.WebControls::DataControlRowState
One of the DataControlRowState values.
includeReadOnly
Type: System::Boolean
true to indicate that the values of read-only fields are included in the dictionary collection; otherwise, false.

The ExtractValuesFromCell method is implemented by types derived from DataControlField, such as TemplateField. This method is called to extract the values of two-way data-bound fields in the template to populate dictionaries to be passed to the data source for an update, insert, or delete operation. The field/value pair is stored in the dictionary collection that is passed to the method. The ExtractValuesFromCell method is called by the ExtractRowValues method of data controls such as DetailsView and GridView.

.NET Framework

Supported in: 4, 3.5, 3.0, 2.0

Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Show: