Html.DropDownListFor
时间:2014-06-20 17:48:00
收藏:0
阅读:219
@Html.DropDownListFor(x => x.WillAttend, new[] { new SelectListItem() {Text = "Yes, I‘ll be there", Value = bool.TrueString}, new SelectListItem() {Text = "No, I can‘t come", Value = bool.FalseString} }, "Choose an option")
bool.FalseString
评论(0)