FormView::InitializeRow Method
Initializes the specified DetailsViewRow object.
Assembly: System.Web (in System.Web.dll)
Parameters
- row
- Type: System.Web.UI.WebControls::FormViewRow
The FormViewRow to initialize.
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. |
When extending the FormView class, you can override this method to create your own custom row.
Windows 7, Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98
The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Note: