Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Frantyk Andrii
35,423 PointsHelp pls
Heeelp
@model IssueReporter.Models.Issue
@using IssueReporter.Models
@{
ViewBag.Title = "Report an Issue";
}
<h2>@ViewBag.Title</h2>
@using (Html.BeginForm())
{
@Html.ValidationSummary(m => m.Name)
<div>
@Html.LabelFor(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.RadioButtonFor(m => m.Severity,
Issue.SeverityLevel.Minor) @Issue.SeverityLevel.Minor
@Html.RadioButtonFor(m => m.Severity,
Issue.SeverityLevel.Major) @Issue.SeverityLevel.Major
@Html.RadioButtonFor(m => m.Severity,
Issue.SeverityLevel.Critical) @Issue.SeverityLevel.Critical
</div>
<div>
@Html.CheckBoxFor(m => m.Reproducible) @Html.DisplayNameFor(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
220,937 PointsYou're close.
But Html.ValidationSummary doesn't take any arguments.
Jon Wood
9,884 PointsJon Wood
9,884 PointsWhat's the problem you're having with the code? I don't see any issues that stand out when going through it.