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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T06:10:34+00:00 2026-06-01T06:10:34+00:00

i added checkboxes dynamically to panel. for (int intControlIndex = 0; intControlIndex < dsTagsList.Tables[0].Rows.Count;

  • 0

i added checkboxes dynamically to panel.

for (int intControlIndex = 0; intControlIndex < dsTagsList.Tables[0].Rows.Count; intControlIndex++)
{
   chkList1 = new CheckBox();
   chkList1.Text = dsTagsList.Tables[0].Rows[intControlIndex][0].ToString();
   chkList1.ID = "Chk" + intControlIndex;
   chkList1.Font.Name = "Verdana";
   chkList1.Height = 20;
   chkList1.ForeColor = System.Drawing.Color.Black;
   chkList1.Font.Size = 10;
   panelTags.Controls.Add(chkList1);
   panelTags.Controls.Add(new LiteralControl("<br>"));
}

How to check which checkboxes selected or not ?
Please tell me….

  • 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-01T06:10:36+00:00Added an answer on June 1, 2026 at 6:10 am

    I would loop through all controls in the panel, check if the control is a check box, then act on it if it is.

    foreach(Control child in panelTags.Controls)
    {
        if(!(child is CheckBox))
            continue;
    
        if((child as CheckBox).Checked)
        {
            // Do 'is checked' something
        }
        else
        {
            // Do 'is not checked' something
        }
    }
    

    Or better yet, using LINQ OfType that filters an enumerable by type:

    foreach(CheckBox child in panelTags.Controls.OfType<CheckBox>())
    {
        if(child.Checked)
        {
            // Do 'is checked' something
        }
        else
        {
            // Do 'is not checked' something
        }
    }
    

    The LINQ statement lets us further query the list.
    If you only want to act on checked checkboxes.

    // Add to Usings
    using System.Linq;
    
    foreach(CheckBox child in panelTags.Controls
                                  .OfType<CheckBox>()
                                  .Where(chk => chk.Checked))
    {
        // Do 'is checked' something
    }
    

    A few other things I can think of that may be causing problems:

    1. Is the foreach is being called before Page_Load? Since you’re likely running this in a postback, the Page_Load is when the control properties are loaded with information recovered from view state and control state.

    2. Is the checkbox creation within a if(!IsPostBack) to prevent multiple controls from being added?

    3. Are you calling panelTags.Controls.Clear(); before adding the checkboxes this will remove any data returned from the page>

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

Sidebar

Related Questions

I have added checkbox selection model to grid panel. It works fine in IE8
I have added checkbox in display table using decorator class as shown in below
Brief: Based on a query, I have multiple checkboxes generated dynamically. The value of
I was looking at adding rows dynamically to my HTML table using jQuery with
I have a Listview control lstStudents and i have added checkboxes inside the List
I have two tables [Source: table1, Destination:table2] with 3 columns each (checkbox, value1, value2).
I dynamically load in a few li's that have a label and a checkbox
I have an asp page where controls are dynamically added from the DB on
I have have a a function that when a checkbox is checked i dynamically
I'm trying to create a check/uncheck all CheckBox for a number of CheckBoxes that

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.