Click here to Skip to main content
15,878,970 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.3K   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

 
GeneralProblem with QueryString mode paging in URL Rewritten pages Pin
Mahdi Taghizadeh17-Dec-05 23:44
Mahdi Taghizadeh17-Dec-05 23:44 
General[Message Removed] Pin
Mojtaba Vali21-Dec-05 10:35
Mojtaba Vali21-Dec-05 10:35 
QuestionReset the Pager? Pin
Holger Wess15-Dec-05 2:52
Holger Wess15-Dec-05 2:52 
GeneralSearch Problem Pin
volcano_245-Nov-05 8:11
volcano_245-Nov-05 8:11 
GeneralRe: Search Problem Pin
aDaNG Bryen15-May-06 1:26
aDaNG Bryen15-May-06 1:26 
GeneralRe: Search Problem Pin
Stixoffire217-Oct-06 0:13
Stixoffire217-Oct-06 0:13 
GeneralRe: Search Problem Pin
stixoffire11-Jun-07 11:05
stixoffire11-Jun-07 11:05 
NewsPager Control in ASP .NET 2.0 Pin
r.cicca25-Oct-05 11:17
r.cicca25-Oct-05 11:17 
QuestionRe: Pager Control in ASP .NET 2.0 Pin
AntonioN13-Jun-06 5:02
AntonioN13-Jun-06 5:02 
Questionmissing ID and wrong class attribute Pin
r.cicca25-Oct-05 8:29
r.cicca25-Oct-05 8:29 
GeneralRe: missing ID and wrong class attribute Pin
r.cicca25-Oct-05 11:31
r.cicca25-Oct-05 11:31 
GeneralRe: missing ID and wrong class attribute Pin
kevnord25-Oct-05 18:42
kevnord25-Oct-05 18:42 
GeneralRe: missing ID and wrong class attribute Pin
kevnord25-Oct-05 18:56
kevnord25-Oct-05 18:56 
GeneralRe: missing ID and wrong class attribute Pin
r.cicca25-Oct-05 21:31
r.cicca25-Oct-05 21:31 
General[Message Removed] Pin
Mojtaba Vali22-Oct-05 2:21
Mojtaba Vali22-Oct-05 2:21 
GeneralRe: a usefull event Pin
kevnord25-Oct-05 18:48
kevnord25-Oct-05 18:48 
General[Message Removed] Pin
Mojtaba Vali25-Oct-05 20:14
Mojtaba Vali25-Oct-05 20:14 
QuestionRe: a usefull event Pin
Daniel Santillanes3-Nov-05 11:17
professionalDaniel Santillanes3-Nov-05 11:17 
Answer[Message Removed] Pin
Mojtaba Vali21-Dec-05 10:31
Mojtaba Vali21-Dec-05 10:31 
AnswerRe: a usefull event Pin
Plandis5-Sep-07 11:06
Plandis5-Sep-07 11:06 
GeneralRe: a usefull event Pin
came5-Mar-06 12:49
came5-Mar-06 12:49 
GeneralRe: a usefull event Pin
Stixoffire217-Oct-06 0:20
Stixoffire217-Oct-06 0:20 
GeneralPostBack Pin
volcano_2419-Oct-05 22:57
volcano_2419-Oct-05 22:57 
GeneralRe: PostBack Pin
kevnord21-Oct-05 5:00
kevnord21-Oct-05 5:00 
GeneralRe: PostBack Pin
volcano_2421-Oct-05 6:05
volcano_2421-Oct-05 6:05 

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.