Click here to Skip to main content
Click here to Skip to main content

Binding DropDownList Using List Collection, Enum and DataSet in ASP.NET

By , 21 Dec 2011
 
We can bind DropDownList in different ways by using List, Dictionary, Enum and DataSet.
 
To bind DropDownList, we need to set some properties:
 
  • DataSource
  • DataValueField
  • DataTextField
 
Let's see how to use these properties to bind DropDownList.
 
Binding DropDownList with List
 
In this case, the DropDownList both 'Value' and 'Text' field are same.
DropDownList ddl = new DropDownList();
List<string> countries = new List<string>();
countries.Add("USA");
countries.Add("India");
ddl.DataSource = countries;
ddl.DataBind();

Binding DropDownList with Dictionary

Dictionary<string, string> States = new Dictionary<string, string>();
States.Add("-1","-Select State-");
States.Add("AP", "Andhra Predesh");
States.Add("KA", "Karnataka");
States.Add("TN", "Tamilnadu");
States.Add("KL", "Kerala");
ddl.DataSource = States;
ddl.DataValueField = "Key";
ddl.DataTextField = "Value";
ddl.DataBind();

Binding DropDownList with DataSet

My DataSet contains a Class table(class_id,class_name,description).
ddl.DataSource = dataset.Tables[0].DefaultView;
ddl.DataValueField = "class_id"; 
ddl.DataTextField = "class_name";
ddl.DataBind();
ListItem item = new ListItem("-Select Class-", "-1");
ddl.Items.Insert(0, item);

Binding DropDownList with Enum

Let’s take Countries ‘enum’ as follows:
enum enCountries:int{India=0,USA,UK,UAE};
Let's see how to bind the DropDownList With Enum:
ddlEnumBind.Items.Add("--Select Country--");
//get enum items to get the respective enum value 
string[] enumNames=Enum.GetNames(typeof(enCountries));
foreach (string item in enumNames)
{
    //get the enum item value
    int value = (int)Enum.Parse(typeof(enCountries), item);
    ListItem listItem = new ListItem(item, value.ToString());
    ddlEnumBind.Items.Add(listItem);
}

License

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

About the Author

Rajesh Kumar Chekuri
Software Developer (Junior)
India India
Member
If There Is Any suggestions Mail me raji539@yahoo.com
 
Best Regards
Rajesh Kumar Chekuri
www.techtasks.net
www.funevil.blogspot.com

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
QuestionAsp.net mvc4 and WCFmemberasma288129 Mar '13 - 4:41 
GeneralMy vote of 5memberasp_crazy_guy12 Sep '12 - 20:33 
SuggestionAnother Easy method for country names in asp.net dropdownlistmemberdharwishnasar11 Jul '12 - 21:07 
GeneralReason for my vote of 5 Good.. Refreshing Basics,,memberrahulpriyan26 Dec '11 - 21:33 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Permalink | Advertise | Privacy | Mobile
Web04 | 2.6.130516.1 | Last Updated 21 Dec 2011
Article Copyright 2011 by Rajesh Kumar Chekuri
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid