Click here to Skip to main content
15,867,568 members
Articles / Web Development / ASP.NET
Article

Paging GridView with ROW_NUMBER()

Rate me:
Please Sign up or sign in to vote.
4.30/5 (25 votes)
5 Feb 2006Ms-RL2 min read 179.3K   4.6K   81   25
This article explains how to implement custom paging in the GridView web control using the ROW_NUMBER() function of SQL Server 2005

Sample Image - PagingGridView.jpg

Introduction

Searching on the web, I found a lot of useful articles about this new feature of SQL Server 2005 and among them I mention the Jason Witty’s article - that was a starting point for me. We have been waiting for a long time for this new feature of SQL Server 2005. I don’t want to compare this new kind of ASP .NET paging with the well-known paging using

temporary 

table
, RowCount method or Cursor method, used with SQL Server 2000, but rather how simple is to paging a GridView in this way and to customize it. I don't use the built-in mechanism for paging of GridView web control.

I wrote this sample, because I needed to add custom paging for a grid view that allows easily changing the page size and go directly to a page number without passing throughout each page, one by one. In the past, I already used this kind of paging with data grid. To change it from datagrid to gridview I cut and paste the code and the job is done. Code behind is really a rudimentary one and is very easily to understand.

Code

In the Size button click event, we set the current page number and the page size and the we bind the GridView to display the data:

C#
PageNum = 1;
PageSize = Convert.ToInt16(PageSizeTxt.Text);
BindGridView();
In the Go button event click, where we go to a page number:
C#
if (GoToPageTxt.Text != "")
{
    int maxPage  = Convert.ToInt32(TotalPages.Text);
    int goToPage = Convert.ToInt32(GoToPageTxt.Text);

    if (goToPage <= maxPage)
    {
        PageNum = goToPage;
        BindGridView();
    }
}
Here is the GridView HTML code:
<asp:GridView  ID="GridView1" runat="server" AutoGenerateColumns="False" >
       <Columns>
              <asp:BoundField DataField="RowNumber" HeaderText="RowNumber" />
              <asp:BoundField DataField="Name" HeaderText="Name" />
              <asp:BoundField DataField="SalesYTD" HeaderText="SalesYTD" />
              <asp:BoundField DataField="PostalCode" HeaderText="PostalCode" />
       </Columns>               
</asp:GridView>

I built the stored procedure with a SQL Server 2005 Books Online example. As you can see, it returns the ROW_NUMBER for the salespeople in AdventureWorks database, based on the year-to-date sales. My intention is not to explain how ROW_NUMBER() works, because it's already done in SQL Server 2005 Books Online or in many articles on the web, but how to pass the parameters to a stored procedure for customizing paging using ROW_NUMBER(). I just included the Microsoft query into my stored procedure and the paging works very well. Finally, the query returns the total number of records to calculate how many pages we can display. The stored procedure script is shown below:

SQL
set ANSI_NULLS ON
set QUOTED_IDENTIFIER ON
go

CREATE PROCEDURE [dbo].[sp_GridView_RowNumber]
(
    @PageNum int,
    @PageSize int,
    @TotalRowsNum int output
)
AS

BEGIN
    -- SET NOCOUNT ON added to prevent extra result sets from
    -- interfering with SELECT statements.
    SET NOCOUNT ON;

    -- Use ROW_NUMBER function
    WITH Salespeople_AdventureWorks As
    (
        SELECT 'RowNumber' = ROW_NUMBER() OVER(ORDER BY SalesYTD DESC), 
               'Name' = c.FirstName + ' ' + c.LastName, s.SalesYTD, a.PostalCode
        FROM Sales.SalesPerson s JOIN Person.Contact c on s.SalesPersonID = c.ContactID
        JOIN Person.Address a ON a.AddressID = c.ContactID
        WHERE ((TerritoryID IS NOT NULL) AND (s.SalesYTD <> 0))
    )

    -- Query result
    SELECT * 
    FROM Salespeople_AdventureWorks
    WHERE RowNumber BETWEEN (@PageNum - 1) * @PageSize + 1 AND @PageNum * @PageSize             
    ORDER BY SalesYTD DESC

    -- Returns total records number
    SELECT @TotalRowsNum = count(*) 
    FROM Sales.SalesPerson s JOIN Person.Contact c on s.SalesPersonID = c.ContactID
    JOIN Person.Address a ON a.AddressID = c.ContactID
    WHERE ((TerritoryID IS NOT NULL) AND (s.SalesYTD <> 0))
END
The source code includes the solution in Visual Studio 2005 and the script for the stored procedure. You have to change your connection string in the code to run the sample.

License

This article, along with any associated source code and files, is licensed under Microsoft Reciprocal License


Written By
Web Developer
Canada Canada
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
Questionhow to download? Pin
Rainbowonnet1-Aug-16 20:04
Rainbowonnet1-Aug-16 20:04 
AnswerRe: how to download? Pin
OriginalGriff1-Aug-16 20:04
mveOriginalGriff1-Aug-16 20:04 
GeneralRe: how to download? Pin
Socrate121-Aug-16 10:02
Socrate121-Aug-16 10:02 
AnswerRe: how to download? Pin
Socrate121-Aug-16 10:02
Socrate121-Aug-16 10:02 
GeneralRe: how to download? Pin
Socrate121-Aug-16 7:22
Socrate121-Aug-16 7:22 
QuestionThank You Pin
kazemtnt23-Mar-13 8:26
kazemtnt23-Mar-13 8:26 
QuestionHow to impliment with store procedure Pin
prince_rumeel20-Mar-13 0:33
prince_rumeel20-Mar-13 0:33 
GeneralMy vote of 4 Pin
thinkpad_r50024-Apr-11 19:11
thinkpad_r50024-Apr-11 19:11 
GeneralMy vote of 5 Pin
Neullson9-Aug-10 22:54
Neullson9-Aug-10 22:54 
GeneralI think this solution is good Pin
niithoang19-Sep-09 19:19
niithoang19-Sep-09 19:19 
QuestionHow can I have sorting for this gridview? Pin
sepid2-Jan-09 5:00
sepid2-Jan-09 5:00 
Questionwhats the difference? Pin
marktoth3-Oct-08 19:24
marktoth3-Oct-08 19:24 
AnswerRe: whats the difference? Pin
PigsOnTheWing19-Oct-08 3:51
PigsOnTheWing19-Oct-08 3:51 
QuestionInvalid column name 'rownum' error Pin
auxcom27-Feb-07 1:29
auxcom27-Feb-07 1:29 
GeneralFantastic Example, Thank you!!! [modified] Pin
great_scandinavian1-Feb-07 20:53
great_scandinavian1-Feb-07 20:53 
QuestionSqlDataAdapter Pin
dffefqefe4-Jan-07 16:54
dffefqefe4-Jan-07 16:54 
GeneralAll well and good, but... Pin
Elfman_NE11-Oct-06 7:30
Elfman_NE11-Oct-06 7:30 
GeneralNot a good solution Pin
Guy Kolbis4-Jul-06 19:25
Guy Kolbis4-Jul-06 19:25 
GeneralRe: Pin
Socrate129-Jul-06 14:05
Socrate129-Jul-06 14:05 
GeneralIncorrect syntax near the keyword 'WITH' Pin
sasire186-Feb-06 2:49
sasire186-Feb-06 2:49 
GeneralRe: Incorrect syntax near the keyword 'WITH' Pin
Socrate16-Feb-06 5:17
Socrate16-Feb-06 5:17 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.