Multiple selction in Dropdownlist of asp.net MVC 3

user picture user · Aug 8, 2012 · Viewed 12.1k times · Source

Can we select multiple items from razor dropdownlist control. i.e for

@Html.DropDownListFor(m=>m.Country, CountryList as SelectList,"--Select--")

Answer

Stonck picture Stonck · Aug 8, 2012

You can try maybe something like this ...

@Html.ListBoxFor(m=>m.Country, new MultiSelectList(CountryList as SelectList, "CountryID", "Select"))