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 8466117
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 10, 20262026-06-10T15:14:51+00:00 2026-06-10T15:14:51+00:00

Here is code. Its not showing any compile or run time error. I debugged

  • 0

Here is code. Its not showing any compile or run time error. I debugged also then till data binding works fine. But then also controls not shown in web page!

Sample.aspx:

    <body>
    <form id="form1" runat="server">
    <asp:PlaceHolder ID="_placeHolder1" runat="server">
    </asp:PlaceHolder>
    </form>
    </body>

Sample.aspx.cs:

     protected void Page_Load(object sender, EventArgs e)
     {
      _placeHolder1.Controls.Add(CreateReapeater());
     }

     private Control CreateReapeater()
     {
        Repeater _repeater1 = new Repeater();
        Stack _stack1 = new Stack();
        for (int i = 0; i < 7; i++)
        {
            _stack1.Push(i);
        }
        _repeater1.DataSource = _stack1;
        _repeater1.DataBind();
        return _repeater1;
    }
  • 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-10T15:14:53+00:00Added an answer on June 10, 2026 at 3:14 pm

    Actually repeater have no inbuild column structure as like gridview. so when we bind repeater dynamically we need to also create the item template for that.

    You need to modify the createrepeater function as below.

    private Control CreateReapeater()
    {
        Repeater _repeater1 = new Repeater();
        Stack _stack1 = new Stack();
        for (int i = 0; i < 7; i++)
        {
            _stack1.Push(i);
        }
    
        _repeater1.DataSource = _stack1;          
        _repeater1.DataBind();
    
        foreach (RepeaterItem repeatItem in _repeater1.Items)
        {
            int index = repeatItem.ItemIndex;
    
            RepeaterItem repeaterItem = new RepeaterItem(repeatItem.ItemIndex, ListItemType.Item);
            Label lbl = new Label();
    
            lbl.Text = "Item No :" + index.ToString() + "<br/>";
            repeatItem.Controls.Add(lbl);
    
        }
    
    
    
        return _repeater1;
    }
    

    This will resolve your issue.

    Happy Coding…..

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

Sidebar

Related Questions

Why this code showing error in W3C validator character data is not allowed here
Got this line of code here but its not working. private void Button_Click(object sender,
Here is what I am currently using for the code and it's not working
i have implemented code like here but it's not working for iOS 5.0, it
Its too much code to paste here so, I have created demo please have
here is the server side code of my program, the problem is, its accepting
I don't know how to summarize my situation, but here's the simplified code showing
I have some code here but it's not working. What I want is to
Here is the code, it's pretty straightforward. class Foo { public: void print() {
Here is my code: <%= Html.TextBox(txtId, new { @readonly = readonly })%> But it's

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.