Advertisement
Guest User

Untitled

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