When GridView Paging Goes Bad

written by Ryan Olshan on Friday, December 02 2005

Here is something that many people may not know about GridView paging: Interface paging, the method of paging used by the GridView control, causes all your data to be loaded into memory at the time the data binds to the GridView. This means that if you are returning a huge amount of records, you will impose a huge performance constraint on your server. What is the solution? The ObjectDataSource offers data source paging.

For more information on the ObjectDataSource, visit http://tinyurl.com/qfykh.

R

Kick this post on .NET Kicks

Similar Posts

  1. Generic List Collection / ObjectDataSource / GridView Sample
  2. Dev Connections Day 2
  3. 911 Pigeon Alert

Post a comment