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

Multi select Dropdown list in ASP.NET

By , 19 Mar 2007
 
Prize winner in Competition "Best ASP.NET article of Feb 2007"

Introduction

The Dropdown list in ASP.NET is used to select a single item from the list. The Listbox control is used to select multiple items, but it takes up more space on the page. An ASP.NET page which contain many of these controls may make it difficult to find the proper space and alignment for each control.

To overcome this, I am introducing a Multi Select Dropdown list box control. It is a user control and can be used directly on pages very easily. It allows the user to select multiple items from the list and the selected items will be displayed in comma separated format in the text area, and it can also persist the selected items.

How to use this Control

The user control MultiSelectDropDown can be placed on any Web page.

Drag and drop the MultiSelectDropDown control on the web page where you want to use the multi select feature.

Populate the dropdown with appropriate values. In my sample it has been populated as follows:

private void Page_Load(object sender, System.EventArgs e)
{
   if (!Page.IsPostBack )
   {
    MultiSelectDropDown1.Clear();
    MultiSelectDropDown1.List.Items.Add(new System.Web.UI.WebControls.ListItem("Apple","1")) ;
    MultiSelectDropDown1.List.Items.Add(new System.Web.UI.WebControls.ListItem("Grapes","2")) ;
    MultiSelectDropDown1.List.Items.Add(new System.Web.UI.WebControls.ListItem("Orange","3")) ;
    MultiSelectDropDown1.List.Items.Add(new System.Web.UI.WebControls.ListItem("Strawberry","4")) ;
    MultiSelectDropDown1.List.Items.Add(new System.Web.UI.WebControls.ListItem("Water Melon","5")) ;
   }
}

System.Collections.ArrayList selTexts = MultiSelectDropDown1.SelectedTexts;

SelectedTexts property returns an Arraylist of the selected items in the list, SelectedValues property

The following are the main public properties provided by this control:

SelectedTexts Arraylist of selected texts in the list
SelectedValues Arraylist of values corresponding to the selected items in the list
SelectedText Comma separated string of selected texts
SelectedItems Arraylist of values and texts corresponding to the selected items in the list
ListWidth Set/Get the width of the control
List List of items

Screenshots

The following screenshot shows how to select multiple items from the list:

The width of the control can be changed by the ListWidth property of the control.

MultiSelectDropDown1.ListWidth = Convert.ToDouble(txtWidth.Text);

The following image shows that the control width has changed to 150 from 250 when you enter 150 in the Dropdown width field and click on Set DD width button.

The dropdown also shows the tooltip of the selected texts in comma separated format. It helps the user to find out what the selected items are, without clicking on the dropdown if the width of the dropdown is not large enough to display all the selected texts.

The following image shows the tooltip of the text:

The selected items in the list will be added to the Selected Fruits Listbox when you click on Display selected fruits button.

The code is given below:

ListBox1.Items.Clear();
System.Collections.ArrayList selItems = MultiSelectDropDown1.SelectedTexts;
ListBox1.DataSource = selItems;
ListBox1.DataBind();

The following code shows how to set the selected items of the control:

ArrayList selectedItems = new ArrayList();
// Select the items from the list
foreach (System.Web.UI.WebControls.ListItem selItem in ListBox1.Items )
{
   System.Web.UI.WebControls.ListItem li = ListBox1.Items.FindByText(selItem.Text ) ;
   selectedItems.Add(li);
}
MultiSelectDropDown1.SelectedItems =selectedItems;

It sets the SelectedItems property of the control with the ArrayList of items.

Conclusion

This is a very useful and simple control and can be used on any web page irrespective of the .NET version.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

About the Author

Deepthi Viswanathan Nair
United States United States
Member
No Biography provided

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   
QuestionCreate Dropdown with checkbox in mvc4membersonihemant23 Apr '13 - 20:30 
QuestionCan we implement the same using JQuery?membersweatha.murthy5 Jun '12 - 20:52 
AnswerRe: Can we implement the same using JQuery?membervinodkumarnie29 Mar '13 - 19:36 
QuestionMultiSelectDropDownmemberShivani Sinha8 May '12 - 21:24 
QuestionNOT WORKING IN CONTENT PLACE HOLDER PAGEmembernaveen511015 Sep '11 - 10:33 
AnswerRe: NOT WORKING IN CONTENT PLACE HOLDER PAGEmemberNeerajGuru23 Mar '12 - 10:27 
Questionhow to get the content or title value of respective page source url [modified] using asp.netmembermanivannnanpon16 Aug '10 - 0:01 
GeneralMulti-Select Drop Down List in ASP.NETmemberRichard Xiong11 Aug '10 - 14:07 
GeneralMy vote of 4memberprashant0556.s.more26 Jul '10 - 0:42 
GeneralDear Nair Madammembertharuraju21 Jul '10 - 7:15 
GeneralIm Not able to select items.memberMember 422664018 Apr '10 - 20:16 
QuestionCan you Guide me, I am newmemberTrupti Mehta6 Aug '09 - 0:29 
AnswerRe: Can you Guide me, I am newmembervinodkumarnie29 Mar '13 - 19:39 
QuestionCould you please guide me to bind a dataset to this user control?memberHarikaran S20 Jul '09 - 3:27 
GeneralMulti-Select with Master pagememberMember 33793814 Mar '09 - 10:22 
GeneralRe: Multi-Select with Master pagememberDonna Belville28 Apr '09 - 8:44 
GeneralError while using Multiple Multiselectdropdownlistmembersudjp6 Aug '08 - 1:54 
GeneralRe: Error while using Multiple MultiselectdropdownlistmemberDeepthi Viswanathan Nair7 Aug '08 - 8:53 
GeneralRe: Error while using Multiple Multiselectdropdownlistmembersudjp7 Aug '08 - 18:58 
GeneralMultiple controls on same page errormembermaxitaxi28 Oct '07 - 20:51 
GeneralRe: Multiple controls on same page errormemberDeepthi Viswanathan Nair29 Nov '07 - 6:40 
QuestionHow to link to Javascript.membermx200425 Sep '07 - 16:52 
AnswerRe: How to link to Javascript.membermx200425 Sep '07 - 17:21 
GeneralUsing Checkboxesmemberpgenocide10 Sep '07 - 9:19 
GeneralRe: Using CheckboxesmemberDeepthi Viswanathan Nair29 Nov '07 - 6:52 
GeneralRe: Using Checkboxesmembersohan shekhawat27 Feb '08 - 0:47 
QuestionWhere's the MultiSelectDropdown in ASP.NET 2.0?memberjonefer27 Apr '07 - 16:00 
QuestionBrowser compatible?memberPrasad J24 Apr '07 - 17:48 
AnswerRe: Browser compatible?memberDonna Belville9 Feb '09 - 7:31 
QuestionCan you please explainmemberEnnis Ray Lynch, Jr.19 Mar '07 - 11:35 
AnswerRe: Can you please explainmemberDeepthi Viswanathan Nair19 Mar '07 - 12:09 
GeneralRe: Can you please explainmemberJaiprakash M Bankolli15 Apr '07 - 21:42 

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

Permalink | Advertise | Privacy | Mobile
Web02 | 2.6.130516.1 | Last Updated 19 Mar 2007
Article Copyright 2007 by Deepthi Viswanathan Nair
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid