Click here to Skip to main content
15,886,578 members
Please Sign up or sign in to vote.
2.00/5 (1 vote)
See more:
My toolbox(tb) does not show dropdown list control. I tried to include it in tb thru' 'Tools'menu by Checking to select dropdown list control from 'Choose toolbox item' dialog box. The dropdown list control still does not show in the tb.
What is the reason for this? I need help with this. I tried resetting the tb but no success. I am using Visual Studio 2008. I have expanded all the categories in tb to see if by chance it has appeared in any category.
Posted
Updated 9-Mar-12 7:28am
v2
Comments
R. Giskard Reventlov 9-Mar-12 13:28pm    
I have removed your email address: no one will respond through it anyway and you won't get spammed.
Oshtri Deka 9-Mar-12 14:01pm    
Just to be sure, you are working on asp.net project, am I right?
Jyoti5 9-Mar-12 14:48pm    
Thanks Mark. I did not think about the spams when including my email id.
Thanks Again.
Jyoti
Silent Guardian 9-Mar-12 13:57pm    
Ur question isn't clear.
there is no component named dropdown list.
the component with dropdown list control feature is called ComboBox.

so ur question is I can't find ComboBox or have I already answered ur question.?
[no name] 9-Mar-12 14:12pm    
DropDownList is an asp.net control

1 solution

Instead of using Design mode, why don't you try it in the code behind as:

XML
<asp:DropDownList id="ColorList"
                    AutoPostBack="True"
                    OnSelectedIndexChanged="Selection_Change"
                    runat="server"/>
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900