PagerSettings.PageButtonCount Property
.NET Framework (current version)
Gets or sets the number of page buttons to display in the pager when the Mode property is set to the Numeric or NumericFirstLast value.
Assembly: System.Web (in System.Web.dll)
Property Value
Type: System.Int32The number of page buttons to display in the pager. The default is 10.
| Exception | Condition |
|---|---|
| ArgumentOutOfRangeException | The PageButtonCount is set to a value that is less than 1. |
When the Mode property is set to the Numeric or NumericFirstLast value, use the PageButtonCount property to specify the number of page buttons to display in the pager.
The value of this property is stored in view state.
The following code example demonstrates how to use the PageButtonCount property to display five page buttons at a time in the pager row of a GridView control.
<%@ Page language="VB" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" > <head runat="server"> <title>PagerSetting Example</title> </head> <body> <form id="form1" runat="server"> <h3>PagerSetting Example</h3> <asp:gridview id="CustomerGridView" datasourceid="CustomerDataSource" autogeneratecolumns="true" datakeynames="CustomerID" allowpaging="true" runat="server"> <pagersettings mode="NumericFirstLast" firstpagetext="First" lastpagetext="Last" pagebuttoncount="5" position="Bottom"/> </asp:gridview> <br/> <asp:label id="MessageLabel" forecolor="Red" runat="server"/> <!-- This example uses Microsoft SQL Server and connects --> <!-- to the Northwind sample database. Use an ASP.NET --> <!-- expression to retrieve the connection string value --> <!-- from the Web.config file. --> <asp:sqldatasource id="CustomerDataSource" selectcommand="Select [CustomerID], [CompanyName], [Address], [City], [PostalCode], [Country] From [Customers]" connectionstring="<%$ ConnectionStrings:NorthWindConnectionString%>" runat="server"/> </form> </body> </html>
.NET Framework
Available since 2.0
Available since 2.0
Show: