A pager row is displayed in a GridView control when the paging feature is enabled (when the AllowPaging property is set to true). The pager row contains the controls that allow the user to navigate to the different pages in the control. Instead of using the built-in pager row user interface (UI), you can define your own UI by using the PagerTemplate property.
Note: |
|---|
When the
PagerTemplate property is set, it overrides the built-in pager row UI.
|
To specify a custom template for the pager row, first place <PagerTemplate> tags between the opening and closing tags of the GridView control. You can then list the contents of the template between the opening and closing <PagerTemplate> tags. To control the appearance of the pager row, use the PagerStyle property.
Typically, button controls are added to the pager template to perform the paging operations. The GridView control performs a paging operation when a button control with its CommandName property set to "Page" is clicked. The button's CommandArgument property determines the type of paging operation to perform. The following table lists the command argument values supported by the GridView control.
CommandArgument value
|
Description
|
|---|
"Next"
|
Navigates to the next page.
|
"Prev"
|
Navigates to the previous page.
|
"First"
|
Navigates to the first page.
|
"Last"
|
Navigates to the last page.
|
Integer value
|
Navigates to the specified page number.
|