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
Posts Tagged: Paging
How to persist checkbox state in gridview while paging
Again an asp.net post. Today I saw the same question few times in forum, so I thought about creating a post around it. And it helped me to brush up my asp.net skills once again. In this I am using ViewState to store the information about paging state, you can also use session instead of [...]
Implementing Paging in SQL Server 2005 Stored Procedures
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 [...]