views:

19

answers:

1

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.

+1  A: 

I believe that the object data sources have properties to pass paging parameters, which can be used to then get the subset of data that you require.

Some samples here.

Paddy