Build an empty MVC DropdownListFor for a Cascade Sub-List
问题 I would like to build an empty Dropdownlistfor to received the results of a previous Dropdownlisfor selection: The actual view: <div id="makes"> @Html.DropDownListFor(m => m.Make_Id, Model.MakeList, HeelpResources.DropdownlistMakeFirstRecord) </div> <div id="models"> @Html.DropDownListFor(m => m.Model_Id, Model.ModelList, HeelpResources.DropdownlistModelFirstRecord) </div> The actual Controller (to work I had to build an empty SelectedList but it seems strange to have to do this): public