Advertisement
Guest User

Untitled

a guest
Jun 25th, 2017
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. @model ASP_Herkansing.HtmlHelpers.QuestionsListViewModel
  2.  
  3. @{
  4. ViewBag.Title = "QuizStart";
  5. }
  6.  
  7. <h2>QuizStart</h2>
  8.  
  9. @foreach (var q in Model.Questions)
  10. {
  11. <div>
  12. <h2>@q.Title</h2>
  13. <h3>@q.Description</h3>
  14. @foreach (var a in q.Answers)
  15. {
  16. <p>@a.Description</p>
  17. }
  18. </div>
  19. }
  20. <div>
  21. @Html.PageLinks(Model.PagingInfo, x => Url.Action("QuizStart", new { page = x }))
  22. </div>
  23. <div>@Html.ActionLink("Submit", "Results")</div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement