GridView.TopPagerRow Property
Assembly: System.Web (in system.web.dll)
When paging is enabled (by setting the AllowPaging property to true), an additional row called the pager row is automatically displayed in the GridView control. The pager row contains controls that allow the user to navigate to the other pages and can be displayed at the top, the bottom, or both the top and bottom of the control. Use the TopPagerRow property to programmatically access the GridViewRow object that represents the top pager row in a GridView control.
Note |
|---|
| The TopPagerRow property is available only after the GridView control creates the top pager row in the RowCreated event. |
This property is commonly used when you need to programmatically manipulate the top pager row, for example when adding custom content. Any modification to the TopPagerRow 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 TopPagerRow property to access the top pager row in a GridView control. The TopPagerRow property is used to retrieve a DropDownList control from the pager row.
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