Do any of the built in asp.net grid controls (or similiar) provide effecient data paging?
Posted
by Blankman
on Stack Overflow
See other posts from Stack Overflow
or by Blankman
Published on 2010-04-26T13:39:42Z
Indexed on
2010/04/26
13:43 UTC
Read the original article
Hit count: 169
I know in asp.net 1.0 the grid display controls would pull all the data in, and then provide paging but the paging was done in memory.
Are there any smarter controls that provide paging where they only pull the data relevent to current page being displayed?
ie. select 10 rows for the current page, instead of doing a select of ALL the rows in the table.
© Stack Overflow or respective owner