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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T15:21:54+00:00 2026-06-01T15:21:54+00:00

I have a master page, there’s only one menu item and a contentplaceholder there.

  • 0

I have a master page, there’s only one menu item and a contentplaceholder there. I have another web form that inherits form this master page. As nor mal I’ve put all my controls in the contentplaceholder. On my form’s Page_Load event I want to set Enabled=false of all the dropdownlist controls. For this purpose I write:

       foreach (Control control in Page.Controls)
    {
        if (control is DropDownList)
        {
            DropDownList ddl = (DropDownList)control;
            ddl.Enabled = false;
        }
    }

But all the dropdownlists remain Enabled. When I check for the count of the Page.Control I see only one control and it’s the menuitem of the form’s masterpage. What should I do to get the list of controls that are in my current form?

  • 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-01T15:21:55+00:00Added an answer on June 1, 2026 at 3:21 pm

    your foreach loop will not work as your control can have child control and they can also have child control and then DDL.

    What I’ll prefer is to create a list of controls first then iterate through that list which is filled with your desire DDL controls.

    public void FindTheControls(List<Control> foundSofar, Control parent) 
    {
      foreach(var c in parent.Controls) 
      {
        if(c is IControl) //Or whatever that is you checking for 
        {
           if (c is DropDownList){ foundSofar.Add(c); } continue;
    
           if(c.Controls.Count > 0) 
           {
               this.FindTheControls(foundSofar, c);
           }
         }
      }  
    }
    

    Later you can directly loop through foundSofar and it is sure that it will contain all DDL controls inside it.

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

Sidebar

Related Questions

I have a master page that contains an ASP.NET server side Menu control (System.Web.UI.WebControls.Menu)
I have a master page that divides the main content into two areas. There
I have a script manager on my Master page. There are one or 2
I have a master page, inside that I have a menu controls and other
I have a master page with Header, Menu, Content and Footer panes in my
I have one master page which applies to all pages in this website. On
I have a Master Page which has an associated css file. On one of
I have a master page where in I have a link button. In one
I have a Master Page that has two different modes of behavior: strict input
We have a custom master page that is deployed to My Site, as well

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.