Paging display on GridView with a large number of rows

  • Thread starter Thread starter zlf
  • Start date Start date
Z

zlf

For tables with large number of rows, it is difficult to access the rows
with high page number due to high volume of data. Currently the user is
required to click the "..." link many times to get to each successive table.
Instead of only display few page index, is it possible to make GridView
display all page index?

Thanks

zlf
 
Instead of only display few page index, is it possible to make GridView
display all page index?

Thanks

zlf

You want the PageButtonCount property of the PagerSettings tag. For
example:

<asp:GridView ID="..." [...]>
<PagerSettings Position="TopAndBottom" PageButtonCount="35" />
<Columns>
[...]
 
Back
Top