|
GridView by default implements paging and sorting, that it's ok if your queries just return a hundred of records... you can have serious performance issues if your query can return a big amout of records (everything is fetched on every post).
You can implement custom paging (object data source + SQL Server 2005 / 2008 new stuff), but is not something straight forward. This article explains you how to implement that step by step, even you can download a full sample project.
|