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 trialCedric Vincent H
480 Points.NET 6 / Visual Studio 2022
Even though the course is a bit outdated, I can still follow along until this topic. Here are the codes in my Detail.cshtml file.
@{ ViewData["Title"] = "Detail"; }
<h1>@ViewBag.SeriesTitle</h1> <br /> <h2>Issue Number: @ViewBag.IssueNumber</h2> @<br />@
<h5>Description:</h5> <div> @Html.Raw(ViewBag.Description) </div>
@if (ViewBag.Artists.Length > 0) { <br /> <h5>Artists:</h5> <div> <ul> @foreach (var artist in ViewBag.Artists) { <li>@artist</li> } </ul> </div> }
When I changed this: @{ ViewData["Title"] = "Detail"; }
to this: @{ //ViewData["Title"] = "Detail"; Layout = "~/Views/Shared/_Layout.cshtml"; ViewBag.Title = "Comic Book Detail"; }
Nothing happens. I'm not sure why. Help please