How to a jump-to-page feature to enhance the DataGrid pager - level 200
Posted by: Jeffrey Palermo,
on 18 Nov 2005 |
View original | Bookmarked: 0 time(s)
When displaying information in a grid on an ASP.NET web page, it's often a good idea to page the information if there is a lot of it. For instance, if you have 10000 rows of information to potentially display, it's unreasonable to expect the user to wait to download all of it at one time and scroll forever. It's wasteful, too. Instead, page it in smaller chunks (10-50). Then let the user move to different pages of information. But when there is a lot of pages, you...