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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T16:27:52+00:00 2026-05-23T16:27:52+00:00

I currently have a Sharepoint 2010 web part which includes several labels. I want

  • 0

I currently have a Sharepoint 2010 web part which includes several labels. I want to programmatically remove all but one of these labels.

I tried the code below but got a System.InvalidOperationException because obviously one can’t modify a collection while iterating through it. However, I don’t know how else to try this.

    private void clearLabels()
    {
        foreach (Control cont in this.Controls)
            if (cont is Label && cont.ID != "error")
                this.Controls.Remove(cont);
    }
  • 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-23T16:27:52+00:00Added an answer on May 23, 2026 at 4:27 pm

    Iterate over it backwards.

    for(int i = this.Controls.Count - 1; i >= 0; i--)
    {
        if (this.Controls[i] is Label && this.Controls[i].ID != "error")
        {
            this.Controls.Remove(this.Controls[i]);
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have been investigating building web parts for sharepoint 2010 and currently have a
The Sharepoint 2010 Current User Filter Web Part allows List Web Parts that have
Background: I have a built-in-house custom SharePoint 2010 web part, inheriting from System.Web.UI.WebControls.WebParts.WebPart ,
I’m new to SharePoint development. We are currently running SharePoint 2007, but we have
I have a list in SharePoint 2010 with some columns. All are default types.
I am newbie in SharePoint 2010 but have experience in ASP.NET (C#) development. I
We are currently using TFS 2010 and have a Team site of SharePoint 2007.
Currently I have a custom Web Part, deployed as a Feature, and it accesses
I'm using Javascript inside of a SharePoint 2010 Content Editor Web Part to insert
Currently we have a sequential workflow in sharepoint 2010 that has a delay activity.

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.