Paging display on GridView with a large number of rows

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • zlf

    Paging display on GridView with a large number of rows

    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


  • Mick Wilson

    #2
    Re: Paging display on GridView with a large number of rows

    On Apr 2, 10:05 am, "zlf" <zl...@hotmail. comwrote:
    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="..." [...]>
    <PagerSetting s Position="TopAn dBottom" PageButtonCount ="35" />
    <Columns>
    [...]

    Comment

    Working...