
trina joy
6,525 PointsDropDownList MVC Forms
i get the folowing error..
Did you remove any of the provided form code or markup?
@model IssueReporter.Models.Issue
@{
ViewBag.Title = "Report an Issue";
}
<h2>@ViewBag.Title</h2>
@using (Html.BeginForm())
{
<div>
@Html.DropDownListFor(m => m.Name)
@Html.TextBoxFor(m => m.Name)
</div>
<div>
@Html.LabelFor(m => m.Email)
@Html.TextBoxFor(m => m.Email)
</div>
<div>
@Html.LabelFor(m => m.DepartmentId)
@Html.DropDownListFor(m => m.DepartmentId, (SelectList)ViewBag.DepartmentsSelectListItems, "")
</div>
<div>
@Html.LabelFor(m => m.Severity)
@Html.TextBoxFor(m => m.Severity)
</div>
<div>
@Html.LabelFor(m => m.Reproducible)
@Html.TextBoxFor(m => m.Reproducible)
</div>
<div>
@Html.LabelFor(m => m.DescriptionOfProblem)
@Html.TextAreaFor(m => m.DescriptionOfProblem)
</div>
<button type="submit">Save</button>
}
1 Answer

Steven Parker
205,587 Points
You changed more than what the challenge asked for.
You were only supposed to change the TextBoxFor method for the "Department" field.
But you apparently also changed the LabelFor method for the "Name" field.