GridView.FooterRow Property

Gets a GridViewRow object that represents the footer row in a GridView control.

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

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

public function get FooterRow () : GridViewRow

Not applicable.

Property Value

A GridViewRow that represents the footer row in a GridView control.

Use the FooterRow property to programmatically access the GridViewRow object that represents the footer row in a GridView control.

NoteNote:

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

The following code example demonstrates how to use the FooterRow property to display the sort direction in the footer row.

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

Windows 98, Windows Server 2000 SP4, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition

The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.

.NET Framework

Supported in: 3.0, 2.0

Community Additions

ADD
Show: