@Html.DropDownListFor(model => model.IsExist,
new SelectList(new List<Tuple<bool, string>>
{
new Tuple<bool, string>(false, "No"),
new Tuple<bool, string>(true, "Yes"),
}, "Item1", "Item2"))
@Html.DropDownListFor(model => model.IsExist,
new SelectList(new []
{
new {ID=false, Name="No"},
new {ID=true, Name="Yes"},
}, "ID", "Name"))

No comments:
Post a Comment