FormView.InitializeRow Method
Assembly: System.Web (in system.web.dll)
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. |
Windows 98, Windows 2000 SP4, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.
Note