Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7897735
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 3, 20262026-06-03T08:14:36+00:00 2026-06-03T08:14:36+00:00

I am using the Repeater control. I can have around 300 records maximum. I

  • 0

I am using the Repeater control. I can have around 300 records maximum.

I donot want to use Paging. There can be a provision to show More records with the help of More button at the bottom of Repeater.

Do you have any sample like that demonstrates such usage?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-03T08:14:38+00:00Added an answer on June 3, 2026 at 8:14 am

    As the commenter says you do need paging

    You would need to use the PagedDataSource as the data source for the repeater. This link shows how. Because the repeater doesn’t offer any ‘out of the box’ paging control you are free to code up whatever paging control you want – in your case the more button. From the link the databind would be something like

    pagedDataSource page = new PagedDataSource();
                page.AllowCustomPaging = true;
                page.AllowPaging = true;
                page.DataSource = query;
                page.PageSize = 10;
                Repeater1.DataSource = page;
                Repeater1.DataBind();
    

    Your paging might be something linq

    protected btnMoreClick(object sender, EventArgs e)
    {
        //.. get the source
        var dataSource = GetDataSource()
    
        //.. page it - i.e. use link
        dataSource.Skip(currentPage * pageSize).Take(pageSize)
    
        //.. now bind the source again
        //.. your code
    
    }
    

    Please note the above is pseudocode just to give you the idea and get you started.

    ALSO

    I posted a previous answer about efficient paging which I think would be relevant in your case.

    Hope this helps

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Greetings! I have a Repeater control that's using an XmlDataSource control. <asp:FormView id=myFormView runat=server
I have an mxml panel in which I'm using a repeater. The panel can
Now am using repeater control and create three labels and corresponding textbox. I want
I have a repeater control outputting some HTML. I want a table which outputs
I have a repeater control on my .aspx page. There are times where a
I have an image gallery that is created using a repeater control. The repeater
I am used to using a Repeater control in conventional ASP.Net web projects. I
I have a label that is using a repeater to get information form a
I have a repeater that's bound to a SQL Data Source (using ASP.NET). Are
I have some thumbnails that I display with a Repeater, using a hyperlink and

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.