Modifier

FormView.InitializeRow(FormViewRow) Method

Definition

Initializes the specified FormViewRow object.

protected:
 virtual void InitializeRow(System::Web::UI::WebControls::FormViewRow ^ row);
protected virtual void InitializeRow (System.Web.UI.WebControls.FormViewRow row);
abstract member InitializeRow : System.Web.UI.WebControls.FormViewRow -> unit
override this.InitializeRow : System.Web.UI.WebControls.FormViewRow -> unit
Protected Overridable Sub InitializeRow (row As FormViewRow)

Parameters

row
FormViewRow

The FormViewRow to initialize.

Remarks

The InitializeRow method is a helper method called by the FormView control to initialize the specified FormViewRow object. The FormViewRow object is initialized based on the row type and row state specified by its RowType and RowState properties, respectively. The appropriate content is then added to the FormViewRow object. The following table describes how each row type is initialized.

Row type Description
Data row The contents of the ItemTemplate, EditItemTemplate, or InsertItemTemplate property are added to the FormViewRow object, depending on the value of the RowState property.
Empty data row The value of the EmptyDataText property or the contents of the EmptyDataTemplate property is added to the FormViewRow object, depending on which property is set. If both properties are set, the EmptyDataTemplate property takes precedence.
Footer row The value of the FooterText property or the contents of the FooterTemplate property is added to the FormViewRow object, depending on which property is set. If both properties are set, the FooterTemplate property takes precedence.
Header row The value of the HeaderText property or the contents of the HeaderTemplate property is added to the FormViewRow object, depending on which property is set. If both properties are set, the HeaderTemplate property takes precedence.

Note

This method does not initialize the pager row. To create the pager row, use the InitializePager method.

Notes to Inheritors

When extending the FormView class, you can override this method to create your own custom row.

Applies to

See also