Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Multi-select dropdown list in ASP.NET

Do any good multi-select dropdownlist with checkboxes (webcontrol) exist for asp.net?

Thanks a lot

like image 266
Jan Remunda Avatar asked Apr 21 '09 21:04

Jan Remunda


People also ask

How to create a DropDown List with multiple selections in ASP net?

In order to implement a Multiple Select (MultiSelect) DropDownList with CheckBoxes in ASP.Net we will need to make use of ListBox control and apply the jQuery Bootstrap Multi-Select Plugin to it.

How do I select multiple items in a dropdown list?

For windows: Hold down the control (ctrl) button to select multiple options. For Mac: Hold down the command button to select multiple options.


1 Answers

You could use the System.Web.UI.WebControls.CheckBoxList control or use the System.Web.UI.WebControls.ListBox control with the SelectionMode property set to Multiple.

like image 94
knut Avatar answered Oct 01 '22 14:10

knut