模型
public Location? Format { get; set; }
枚举;
public enum Location
{
Online = 1,
School= 2
}
剃须刀;
@Html.EnumDropDownListFor(m => m.Format, "Select a Format", new { @class = "form-control", type = "text" })
@Html.ValidationMessageFor(m => m.Format).
问题;
如何在EnumDropDownListFor()
中添加“请选择..”选项,该选项仅显示为“标签”而非下拉选项?
注意;
我从数据库中的表中获取数据,因此我不希望在那里使用“请选择”来显示实际行。