Advertisement
Guest User

Untitled

a guest
Mar 6th, 2019
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. @{
  2. ViewBag.Title = "Home Page";
  3. }
  4.  
  5. <h2>@ViewBag.Message</h2>
  6.  
  7. <h4>View results by:</h4>
  8. <ul id="friend">
  9. <li>@Html.ActionLink("Countries", "Countries", "Home")</li>
  10. <li>@Html.ActionLink("Events", "Events", "Home")</li>
  11. </ul>
  12. <div>
  13. <img id="banner" src="oly1.jpg"/>
  14. </div>
  15.  
  16. @{
  17. ViewBag.Title = "Home Page";
  18. }
  19.  
  20. <h2>@ViewBag.Message</h2>
  21.  
  22. <h4>View results by:</h4>
  23. <ul id="friend">
  24. <li>@Html.ActionLink("Countries", "Countries", "Home")</li>
  25. <li>@Html.ActionLink("Events", "Events", "Home")</li>
  26. </ul>
  27. <div>
  28. <img id="banner" src="@Url.Content("~/oly1.jpg")"/>
  29. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement