FormView.BottomPagerRow Property

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

Gets the FormViewRow object that represents the pager row displayed at the bottom of the FormView control.

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

public:
virtual property FormViewRow^ BottomPagerRow {
	FormViewRow^ get ();
}
/** @property */
public FormViewRow get_BottomPagerRow ()

public function get BottomPagerRow () : FormViewRow

Property Value

A FormViewRow object that represents the bottom pager row of a FormView control.

When paging is enabled (when the AllowPaging property is set to true), an additional row called the pager row is automatically displayed in the FormView control. The pager row contains controls that allow the user to navigate to other records, and can be displayed at the top, the bottom, or both the top and bottom of the control. Use the BottomPagerRow property to programmatically access the FormViewRow object that represents the bottom pager row in the FormView control.

NoteNote

The BottomPagerRow property is available only after the FormView control creates the bottom pager row in the ItemCreated event.

This property is commonly used when you need to programmatically manipulate the bottom pager row, for example when adding custom content. Any modification to the BottomPagerRow property must be performed after the FormViewRow object that represents the bottom pager row has been created; otherwise, the FormView control overwrites any changes.

The following example demonstrates how to use the BottomPagerRow property to access the pager row displayed at the bottom of a FormView control. The pager row is then updated with additional content.

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: