Html.DropDownListFor

@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

posted @ 2014-06-19 14:30  秋意了了  阅读(614)  评论(0编辑  收藏  举报