Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > ASP .Net > Paging display on GridView with a large number of rows

Reply
Thread Tools

Paging display on GridView with a large number of rows

 
 
zlf
Guest
Posts: n/a
 
      04-02-2008
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


 
Reply With Quote
 
 
 
 
Mick Wilson
Guest
Posts: n/a
 
      04-02-2008
On Apr 2, 10:05 am, "zlf" <zl...@hotmail.com> wrote:
> 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>
[...]
 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Hide the Gridview Rows and Header rows in Button click VijayRama ASP .Net 2 10-12-2009 01:58 PM
number of rows in a gridview with pagesize? Vincent ASP .Net 2 03-10-2008 06:21 PM
Does GridView paging feature limit number of records coming back from database? Ronald S. Cook ASP .Net 3 05-06-2007 06:20 PM
GridView - custom paging large amount of data Mrozik ASP .Net 0 03-14-2007 08:17 AM
HTML Contents in GridView Rows Will Not Display as HTML? Joey ASP .Net 0 12-22-2005 03:14 PM



Advertisments
 



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57