DetailsView.FooterRow Property

Note: This property is new in the .NET Framework version 2.0.

Gets a DetailsViewRow object that represents the footer row in a DetailsView control.

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

public:
virtual property DetailsViewRow^ FooterRow {
	DetailsViewRow^ get ();
}
/** @property */
public DetailsViewRow get_FooterRow ()

public function get FooterRow () : DetailsViewRow

Property Value

A DetailsViewRow that represents the footer row in a DetailsView control.

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

NoteNote

The FooterRow property is available only after the DetailsView 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 DetailsView control has been rendered; otherwise, the DetailsView control will overwrite any changes.

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

The following code example demonstrates how to use the FooterRow property to access the footer row of the DetailsView control during the ItemCreated event. A Label control within the custom footer row is then updated with the current page number.

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

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.

.NET Framework

Supported in: 2.0

Community Additions

ADD
Show: