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

Pager Control for Repeater, DataList, or an Enumerable Collection

Rate me:
Please Sign up or sign in to vote.
4.79/5 (81 votes)
20 Oct 2005CPOL4 min read 740.9K   11.9K   166   290
This control acts as the middle man between a paged DataSet and your Repeater.

Introduction

Instead of trying to create an enhanced Repeater, I decided to make a separate control that would take care of paging. This CollectionPager acts as a middleman for a control (like the Repeater) and your data source (Dataset or Collection object). It uses the PagedDataSource class to accomplish this.

Having this functionality in a separate control allows you to add paging to any Web Control that accepts a data source. Also, you can place the CollectionPager wherever you want in relation to the control it is binding to.

Example of the Pager in action.

Navigation examples...

Example of the Pager in action.

Postback or QueryString option

This control also allows you to page through your collection with two different methods:

  1. QueryString. Use when you don't want/need to postback data. Through the control's properties, you can set a QueryString key to use. The default key is "Page".
  2. Postback. Use when you want/need to postback data. Helpful for when you want to maintain viewstate.

Using the Control

To use the control, simply add a reference to the complied DLL and put it in your toolbox. You can then drag it to your project. If you wish to do it by hand, it'll look something like this in your .aspx file....

ASP.NET
<%@ Register TagPrefix="cc1" Namespace="SiteUtils" 
  Assembly="CollectionPager" %>
<%@ Page language="c#" Codebehind="Example.aspx.cs" 
  AutoEventWireup="false" Inherits="CollectionPagerExample.WebForm1" %>
<HTML>
    <HEAD><TITLE>Collection Repeater Example</TITLE></HEAD>
    <BODY>
<DIV>
<ASP:LITERAL id=litDifferentResultsFormat runat="server"></ASP:LITERAL>
</DIV>
<DIV>
<ASP:LITERAL id=litTopPager runat="server"></ASP:LITERAL>
</DIV>

    <ASP:REPEATER id="Repeater1" runat="server">
        <HEADERTEMPLATE>
            <TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0">
            <TR>
            <TH>Header1</TH>
            <TH>Header2</TH>
            <TH>Header3</TH>
            <TH>Header4</TH>
            <TH>Header5</TH>
            </TR>
        </HEADERTEMPLATE>
        <ITEMTEMPLATE><TR>
            <TD><%# DataBinder.Eval(Container.DataItem, "Column1") %></TD>
            <TD><%# DataBinder.Eval(Container.DataItem, "Column2") %></TD>
            <TD><%# DataBinder.Eval(Container.DataItem, "Column3") %></TD>
            <TD><%# DataBinder.Eval(Container.DataItem, "Column4") %></TD>
            <TD><%# DataBinder.Eval(Container.DataItem, "Column5") %></TD>
        </TR></ITEMTEMPLATE>
        <FOOTERTEMPLATE>
            </TABLE>
        </FOOTERTEMPLATE>
    </ASP:REPEATER>

    <CC1:COLLECTIONPAGER id="CollectionPager1" runat="server">
    </CC1:COLLECTIONPAGER>
    </BODY>
</HTML>

In your code behind, you just feed the CollectionPager1 object your data source. If you are using a DataSet as your data source, you will need to pass a DataView of it... for example:

C#
public class WebForm1 : System.Web.UI.Page 
{ 
    protected System.Web.UI.WebControls.Repeater Repeater1; 
    protected SiteUtils.CollectionPager CollectionPager1; 

    private void Page_Load(object sender, System.EventArgs e) 
    { 
        //Create DataSet DataSet SampleDataSet = SampleData();
        //Set DataSource of Pager to Sample Data 
   
        CollectionPager1.DataSource = SampleDataSet.Tables[0].DefaultView;
        //Let the Pager know what Control it needs to DataBind during the PreRender.
        
        CollectionPager1.BindToControl = Repeater1; //UPDATED! 
        //The Control now takes the object you are binding to,
        // instead of the name of it (as a string) 

        //Set the DataSource of the Repeater to the PagedData coming from the Pager. 
        Repeater1.DataSource = CollectionPager1.DataSourcePaged; 

        //Done!

    } 
    
    protected override void Render(HtmlTextWriter writer)
    {
        //Example of how to have the results show up in a different spot.
        litDifferentResultsFormat.Text = 
          CollectionPager1.BuildResults("Currently viewing {0} through {1}");

        //Example of how to have a second pager that is tied in...
        litTopPager.Text = CollectionPager1.RenderedHtml;

        base.Render (writer);
    }
    
    ... other stuff ...
}

Control Properties

This control has a lot of properties that allow for customizing its appearance. Every section allows you to specify a CssClass and Style. You can also control the character which is used between page numbers. Here's a screenshot of the properties available:

Image 3

Installation

Installing the control

You can install the control in the standard way:

  • Create a "bin" folder inside the application root of your website (if it's not already there).
  • Copy the assembly file CollectionPager.dll into the bin folder.

Installing the demo

Unzip the ZIP file with the demo. Right-click on the "CollectionPagerExample" subfolder and select Properties. On the Properties window, click "web-sharing" and check "Share this folder".

You should then be able to browse to:

Opening the Solution in Visual Studio

There should be a "CollectionPagerSolution.sln" file in the root of the unzipped folder. When you open this file, you may be prompted for the CollectionPagerExample location. Use the Browse button to locate the CollectionPagerSample folder.

Good Luck!!!

Please let me know if you have any questions or thoughts. As this is my first CodeProject article, I hope that I was clear enough on what it does and how to use it. Thanks!!!

Updates:

2005/10/14

  • I have added "Slider" functionality now. Hey, I couldn't think of a better name! :-) Anyway... when you have a list of page numbers in your pager ... it can move. So, if you're on page 20 and your slider size is 10... the pager will display links to 15-25. If you go down a page to 19 it will show links to 14-24. Use the SliderSize and UseSlider properties to make it happen. :-)
  • The repeater now takes an object as its BindToControl property. This should reduce confusion when using user controls and such. On a side note, there is now an example of using the control with a user control.
  • Other additional tweaks. Enjoy!

2005/05/26 (Major update)

  • I have added a lot of functionality and flexibility to the pager.
  • You can now have it display a "First" and "Last" button/link to allow users to jump to those pages.
  • The previous/next buttons can now be displayed on the left, right, split, or none.
  • You can also access the ResultsInfo in your code behind. This allows you to place this info elsewhere on the page. See example.
  • I have added viewstate functions to correctly load and save viewstate between postbacks.
  • By using the "RenderedHTML" property, you can easily create a second pager above your grid. See example.

2005/04/07

  • Added ShowBackNextLinks property to allow you to display or hide the Back & Next buttons/links.
  • Added ShowPageNumbers property to allow you to display or hide the page numbers.

2005/03/22

  • Added PagingMode property to allow you to choose QueryString or PostBack methods of changing pages.
  • Fixed a bug reported by "whylove" - Thanks!!

2005/03/10

  • Added QueryStringKey property. Allows you to have multiple controls on a single page. Use a unique key for each control.
  • Also fixed a bug reported by a user. Thanks Marc!

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


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

Comments and Discussions

 
QuestionProblem in updatepanel Pin
Member 192394713-Apr-19 12:18
Member 192394713-Apr-19 12:18 
GeneralMessage Closed Pin
20-Aug-14 5:01
Amin Azadbakht20-Aug-14 5:01 
QuestionCache problem Pin
matrixdenny15-Dec-13 0:19
matrixdenny15-Dec-13 0:19 
GeneralThanks Pin
Asp_Learner20-Jun-13 6:21
Asp_Learner20-Jun-13 6:21 
Working like charm, very happy
QuestionCannot Tiggle Event Button_ItemCommand Pin
Stuperman3-Feb-13 20:40
Stuperman3-Feb-13 20:40 
GeneralThis is an awesome control kenvord. :) :) :) Pin
Member 83615454-Jan-13 1:49
Member 83615454-Jan-13 1:49 
Questionreset page index while searching Pin
Nitin Kesarwani25-Apr-12 2:46
Nitin Kesarwani25-Apr-12 2:46 
QuestionHow can I fix the postback problem of collectionpager? Pin
kisianhsang17-Dec-11 0:56
kisianhsang17-Dec-11 0:56 
Questioncollection pager with sqldatasource Pin
patelKhyati5-Oct-11 23:06
patelKhyati5-Oct-11 23:06 
GeneralPostBack paging mode erorr Pin
Member 787117031-May-11 2:43
Member 787117031-May-11 2:43 
QuestionSearch Critria Pin
Ali Al Omairi(Abu AlHassan)21-May-11 20:34
professionalAli Al Omairi(Abu AlHassan)21-May-11 20:34 
GeneralI AM Getting No Result When Doing PostBack Pin
RsaBrother's27-Feb-11 21:37
RsaBrother's27-Feb-11 21:37 
GeneralError... Pin
adyir14-Feb-11 3:57
adyir14-Feb-11 3:57 
QuestionCan not post a button inside datalist when use CollectionPagger Pin
Bruce Do6-Jan-11 16:20
Bruce Do6-Jan-11 16:20 
AnswerRe: Can not post a button inside datalist when use CollectionPagger Pin
RsaBrother's27-Feb-11 21:29
RsaBrother's27-Feb-11 21:29 
GeneralMysql search and problem Pin
madboys2-Feb-10 12:03
madboys2-Feb-10 12:03 
GeneralHyperlink Problem Pin
gtaure4-Nov-09 17:23
gtaure4-Nov-09 17:23 
GeneralDataList with two pagers Pin
haitham_elnemr28-Sep-09 5:34
haitham_elnemr28-Sep-09 5:34 
NewsI have the corrected version of this class Pin
Diogo Menezes30-May-09 8:55
Diogo Menezes30-May-09 8:55 
QuestionRe: I have the corrected version of this class Pin
sureshpillai15-Sep-09 9:24
sureshpillai15-Sep-09 9:24 
GeneralCSS on Collection Pager Pin
MIttal Cool11-May-09 21:23
MIttal Cool11-May-09 21:23 
GeneralHelp Me Pin
farzaneh ansari7-Mar-09 19:58
farzaneh ansari7-Mar-09 19:58 
AnswerRe: Help Me Pin
stixoffire15-May-09 20:04
stixoffire15-May-09 20:04 
GeneralThe DataSourcePaged.CurrentPageIndex out of order Pin
saavedranet15-Jan-09 11:25
saavedranet15-Jan-09 11:25 
QuestionAJax and two pagers asp.net 3.5 [modified] Pin
badass8-Oct-08 23:11
badass8-Oct-08 23:11 

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.