Stories recently tagged with 'Paging'

Paging Implementation With SQL (mnour.blogspot.com)

submitted by mnourmnour(320) 5 years, 4 months ago

When you see how the paging is a piece of cake now in .NET server controls (fro example, GridView), you can imagine how much amount of work was needed to do paging if you haven't these server controls. You can for example fetch all thr data block and put them on the session and just do your paging in you business layer! Ok..I heared someone say what are saying. Ture. This is really a miss when you working on huge data blocks. So, the best way is to do you paging inside the datalayer... read more...

add a comment |category: |Views: 21

tags: another

Paging in SQL Server 2000 and 2005 ...(vadivel.blogspot.com)

submitted by vmvadivelvmvadivel(195) 5 years, 4 months ago

In this article I have discussed in detail about the easier way of paging records using SQL Server 2005. In the due course I have introduced the nuances of using TOP keyword and the cool enhancements added to it. Along with that I would show you how to use TOP command to do paging in SQL Server 2000, albeit at a performance loss, then show how the same result can be achieved with higher performance thanks to new features in SQL Server 2005. read more...

add a comment |category: |Views: 60

tags: another

GridView DropDownList Pager(weblogs.asp.net)

submitted by dalzieldalziel(6230) 5 years, 9 months ago

This post shows you how to add a custom DropDownlist pager and pager buttons to the GridView. read more...

add a comment |category: |Views: 258

tags: another

DataGrid Paging and Sorting Using A DataReader(developerfusion.co.uk)

submitted by james_crowleyjames_crowley(315) 6 years, 3 months ago

This article will demonstrate two ways one could implement the DataReader to bind a DataGrid, that includes caching, paging and persistent bi-directional sorting, all without the use of a DataAdapter/DataSet at all! read more...

add a comment |category: |Views: 324

tags: another

Data Paging with the ASP.NET 2.0 DataList Control and ObjectDataSource(weblogs.asp.net)

submitted by gavinjoycegavinjoyce(25.7k) 6 years, 4 months ago

A hands on walk through by Scott Guthrie on how to implement efficient data-paging using an ASP.NET DataList or Repeater control read more...

add a comment |category: |Views: 1244

tags: another