Select multiple value in DropDownList using ASP.NET and C#. I tried it to select single value from drop down but unable to find multiple selection.
Take a look at the ListBox control to allow multi-select.
in the code behind
foreach(ListItem listItem in lblMultiSelect.Items) { if (listItem.Selected) { var val = listItem.Value; var txt = listItem.Text; } }