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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T06:16:11+00:00 2026-05-28T06:16:11+00:00

I have a Repeater control that is creating a dynamic amount of CheckBoxList controls

  • 0

I have a Repeater control that is creating a dynamic amount of CheckBoxList controls and each list has a different set of ListItems.

I have done this part just fine, but the issue I’m having is how to save the checked states of these dynamically created boxes. I cannot find out how to get the list of these CheckBoxList controls.

Here’s some pseudo-code of what I’m trying to do:

foreach (Item i in MyRepeater)
{
    if (i.ItemType is CheckBoxList)
    {
        foreach (ListItem x in i)
        {
            update table set tiChecked = x.Checked
            where table.id = i.id and table.typeid = x.id
        }
    }
}

I have the ID of the CheckBoxList and the ListItem corresponding to the IDs in the DB.

Edit:

Of course after I ask, I find it out. This seems to be getting me what I want

foreach (RepeaterItem tmp in rptReportList.Items)
{
    if (tmp.ItemType == ListItemType.Item)
    {
        foreach (Control c in tmp.Controls)
        {
            if (c is CheckBoxList)
            {
                DisplayMessage(this, c.ID.ToString());
            }
        }
    }
}
  • 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-05-28T06:16:12+00:00Added an answer on May 28, 2026 at 6:16 am

    You need to look deeper than the RepeaterItem:

    // repeater item
    foreach (Control cr in MyRepeater.Controls)
    {
        // controls within repeater item
        foreach (Control c in cr.Controls)
        {
            CheckBoxList chklst = c as CheckBoxList;
            if (chklst != null)
            {
                foreach (ListItem i in chklst.Items)
                {
                    string valueToUpdate = i.Value;
                    string textToUpdate = i.Text;
                    bool checkedToUpdate = i.Selected;
    
                    // Do update
                }
            }
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a .NET repeater control that is data-bound to a List. As part
I have a repeater control that generates a list of links from a SqlReader.
I have a DropDownList inside a repeater control in an ASP.NET page that has
I am creating a simple ASP page that has a Repeater control. This repeater
I have a nested repeater control that displays a list of data, in my
I have a page on my ASP.NET site that has a Repeater control to
I have a repeater control that contains an ItemTemplate containing a databound label and
I have a Repeater control that is being bound to the result of a
I have a Repeater control that loads instances of a custom control I have
Greetings! I have a Repeater control that's using an XmlDataSource control. <asp:FormView id=myFormView runat=server

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.