+ Will you attend?
+ @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")
+