How Do I Model Bind A List Of 'List<SelectItem>' Using MVC.Net
I am trying to create a form that will consist of a series of dropdown lists, all of which are loaded from a database. I will not know how many dropdown lists will be needed, or how many options each dropdown list will have at compile-time. How can these fields be set-up to allow them to model-bind when posted? There is a lot of other complexity in each of the below code elements, but I cannot get the model binding to work even when reduced down to a basic level. The Models: public class MyPageViewModel { public List<MyDropDownListModel> ListOfDropDownLists { get; set; } } public class