@using (Html.BeginForm())
{
<p> Your name: @Html.TextBoxFor(x => x.Name) </p>
<p> Your email: @Html.TextBoxFor(x => x.Email) </p>
<p> Your phone: @Html.TextBoxFor(x => x.Phone)</p>
<p>
Will you attend?
@Html.DropDownList(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 ")
</p>
<input type="submit" value="Submit RSVP" />
}
The erro está sobre em "x => x.WillAtend"
Como eu resolvo isso? Muito obrigado.