ASP.NET MVC ListBox does not show the selected list items
I am in a big trouble. I read 4 stackoverflow question and one blogpost. I have tried 5 different approach to view the selected items in a multiple selectlist. I have no success. The multiple selectlist is generated, but it does not select the items. I have no more idea. Model : public class EditableModel { public IList<Company> SelectedCompanies { get; set; } public IList<SelectListItem> SelectListCompanies { get; set; } } Controller : public ActionResult Edit(int id) { var service = _serviceDAL.GetEditableModel(id); if (service!= null) { service.SelectListCompanies = GetSelectListCompanies