| 1234567891011121314151617181920212223242526 |
- @{
- Layout = null;
- var controllerName = ViewContext.RouteData.Values["controller"].ToString();
- var actionName = ViewContext.RouteData.Values["action"].ToString();
- }
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="utf-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- <meta name="viewport" content="width=device-width, initial-scale=1">
- <meta name="description" content="">
- <meta name="author" content="">
- <title>@ViewBag.Title</title>
- </head>
- <body>
- <span class="glyphicon glyphicon-home"></span>
- <h1>@ViewBag.Title</h1>
- <hr />
- <div>
- @RenderBody()
- </div>
- </body>
- </html>
|