Advertisement
gyrospring

✒ 0007.0028 VS2017 VB MVC5 Razor layout.vbhtml

Apr 7th, 2019
151
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.64 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.  
  5.  
  6. <title>WebApplication1 - @ViewBag.Title</title>
  7.  
  8. <meta name="description" content="">
  9.  
  10. <meta name="keywords" content="">
  11.  
  12. <meta charset="utf-8">
  13.  
  14. <meta name="viewport" content="width=device-width">
  15.  
  16.  
  17. </head>
  18. <body>
  19.  
  20.  
  21. <div>@DateTime.Now.ToString("yyyy-MM-dd")</div>
  22.  
  23. <div>
  24.  
  25. <a href="/">Home</a> |
  26. <a href="/machines">Machines</a> |
  27. <a href="/about">About</a>
  28.  
  29. </div>
  30.  
  31. @If (Request.Path.ToLower.StartsWith("/machines")) Then
  32.  
  33. @RenderPage("~/views/insert/machines.vbhtml")
  34.  
  35. End If
  36.  
  37. @RenderBody()
  38.  
  39.  
  40. </body>
  41. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement