This documentation is archived and is not being maintained.

FormView::FooterRow Property

Gets the FormViewRow object that represents the footer row in a FormView control.

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

[BrowsableAttribute(false)]
public:
virtual property FormViewRow^ FooterRow {
	FormViewRow^ get ();
}

Property Value

Type: System.Web.UI.WebControls::FormViewRow
A FormViewRow that represents the footer row in a FormView control.

The footer row is displayed at the bottom of the FormView control when the FooterText or FooterTemplate property is set. Use the FooterRow property to programmatically access the FormViewRow object that represents the footer row.

NoteNote:

The FooterRow property is available only after the FormView control creates the footer row in the ItemCreated event.

This property is commonly used when you need to programmatically manipulate the footer row, for example when adding custom content. Any modification to the FooterRow property must be performed after the FormView control has been rendered; otherwise, the FormView control overwrites any changes.

To control the style of the footer row, use the FooterStyle property.

The following example demonstrates how to use the FooterRow property to programmatically modify the properties of the footer row during the ItemCreated event.

No code example is currently available or this language may not be supported.

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.

.NET Framework

Supported in: 3.5, 3.0, 2.0
Show: