MVC DropDownListFor() Selected Item is not Selected / Required Validation not run

前端 未结 2 1205
囚心锁ツ
囚心锁ツ 2021-02-08 04:08

I am having trouble getting my DropDownList to set the selected item to the value from the model.

The field in the model is just a string for the Title of the users nam

2条回答
  •  -上瘾入骨i
    2021-02-08 04:25

    I had this problem with MVC 3 and it turned out that I had set ViewBag.Title on my View (using it for the page title). As soon as I changed it to ViewBag.PageTitle, the dropdownlist code started working : @Html.DropDownListFor(model => model.Title, Model.MySelectList)

    The reason for this is that in MVC 2/3, any ViewBag / ViewData properties with the same name as those in the Model object get used in preference in DropDownListFor(), so you need to rename them to make sure they don't conflict. Because that seems really flaky, I just stopped using ViewBag entirely and now rely only on the View Model for passing stuff into the View.

    The reason this problem is so prevalent is that ViewBag.Title is used in many introductory tutorials and demo code to set the HTML title element, and so inevitably gets adopted as a "best-practice" approach. However, Title is a natural Model property name for use in dropdowns on a "User Details" view.

提交回复
热议问题