How to use CheckBoxList and DropdownList in MVC4 Razor
问题 I have to use @Html.CheckBoxListFor<> or @Html.DropdownListFor<>.I am confused about how to use these helper class in View whild I am using List for Model Binding. What is the Right and Easiest way to Bind List into CheckBoxList and DropdownList. In Model: public class SampleViewModel { public IEnumerable<Responsible> AvailableResponsibles { get; set; } public IEnumerable<Responsible> SelectedResponsibles { get; set; } public PostedResponsibles PostedResponsibles { get; set; } Responsible