You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
@{
|
|
var items = new List<SelectListItem>() { new SelectListItem { Value = "true", Text = "是" }, new SelectListItem { Value = "false", Text = "否" } };
|
|
var list = new SelectList(items, "Value", "Text");
|
|
@Html.DropDownList(null, list, "请选择", new { @class = "form-control" })
|
|
} |