如何在下拉列表htmlhelper中选择一个选项

时间:2017-07-28 11:28:41

标签: html asp.net-mvc enums html-helper

我有这样的枚举。

public enum WeekDay
{
    Monday,
    Tuesday,
    Wednesday,
    Thursday,
    Friday,
    Saturday,
    Sunday
}

我在这个htmlhelper中使用它

@Html.DropDownListFor(model => model.Day,
   new SelectList(Enum.GetValues(typeof(WeekDay))),
   "Select day",
   new { @class = "form-control" })

如何让下拉列表选择其中一天而不是显示“选择日期”?

1 个答案:

答案 0 :(得分:0)

尝试

 @Html.DropDownListFor(model => model.Day, new
 SelectList(Enum.GetValues(typeof(WeekDay))), null, new { @class = "form-control" })

这将导致选择列表中的第一个条目。在这种情况下Monday