Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialKyle Westendorf
6,564 PointsIs there a problem with this quiz?
It asks to add a model directive, so I have with @model IssueReporter.Models.Issue
It won't let me move passed task 1
@model IssueReporter.Models.Issue
@{
ViewBag.Title = "Report an Issue";
}
<h2>@ViewBag.Title</h2>
@using (Html.BeginForm())
{
<div>
@Html.Label("Name")
@Html.TextBox("Name")
</div>
<div>
@Html.Label("Email")
@Html.TextBox("Email")
</div>
<div>
@Html.Label("DepartmentId")
@Html.TextBox("DepartmentId")
</div>
<div>
@Html.Label("Severity")
@Html.TextBox("Severity")
</div>
<div>
@Html.Label("Reproducible")
@Html.TextBox("Reproducible")
</div>
<div>
@Html.Label("DescriptionOfProblem")
@Html.TextArea("DescriptionOfProblem")
</div>
<button type="submit">Save</button>
}
1 Answer
Steven Parker
231,198 PointsYour code passes task 1 for me. I copy/pasted it directly into the challenge.
If you're still having trouble with this, try restarting your browser.