DropDownListFor does not set selected value
问题 I have a view that is displaying a Drop down list using the HTML helper DropDownListFor <%: Html.DropDownListFor(Function(model) model.Manufacturer, New SelectList(Model.ManufacturerList, Model.Manufacturer))%> My controller is passing the View a ViewModel containing the Manufacturer and the ManufacturerList Function Search(ByVal itemSrch As ItemSearchViewModel) As ActionResult 'some code mapping and model code' Return View(itemSrch) End Function My ViewModel is nothing crazy just fills the