Advertisement
Guest User

Untitled

a guest
Dec 2nd, 2015
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.67 KB | None | 0 0
  1. <!DOCTYPE html>
  2.  
  3. <html>
  4. <head>
  5. <meta name="viewport" content="width=device-width" />
  6. <title>@ViewBag.Title</title>
  7. </head>
  8. <body>
  9. <div>
  10. <ul>
  11. <li>@Html.ActionLink("Home", "Index", "Home")</li>
  12. <li>@Html.ActionLink("Name and Price", "NameAndPrice", "Home")</li>
  13. <li>@Html.ActionLink("Demo Expression", "DemoExpression", "Home")</li>
  14. <li>@Html.ActionLink("Demo Array", "DemoArray", "Home")</li>
  15. </ul>
  16. </div>
  17. <h1>Product Information</h1>
  18. <div style="padding: 20px; border: solid medium black; font-size: 20pt">
  19. @RenderBody()
  20. </div>
  21.  
  22. </body>
  23. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement