Posts Tagged: Paging

How to use Linq for paging a generic collection

Posted by & filed under .Net, .Net 4.0, ASP.Net.

Yesterday one of my friend asked me about implementing client side paging. I provided the solution using LINQ paging. Already I have a post which talks about implementing Custom Paging in DataRepeater using C# and SQL Server, but this is using the generic collection. It is using Skip() and Take() extention methods. Happy Programming

Implementing Paging in SQL Server 2005 Stored Procedures

Posted by & filed under .Net, SQL Server.

Normally for implementing Paging in Grid View, we enable the Paging property in GridView and will write code in the PageIndex Changed event. But the problem with this approach is it will fetch all the data from Database for Paging, will result wastage of network bandwidth and resources, also affect in the Page Performance. In [...]