首页 > 代码库 > 002-MVC布局页
002-MVC布局页
~/Views/Shared/_LayoutPage1.cshtml
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta name="viewport" content="width=device-width" /> 5 <title>@ViewBag.Title</title> 6 @RenderSection("head", true) 7 </head> 8 <body> 9 <div> 10 布局页面 11 @RenderBody() 12 </div> 13 </body> 14 </html>
~/Views/AjaxDemo/Show.cshtml
1 @{ 2 ViewBag.Title = "Show"; 3 Layout = "~/Views/Shared/_LayoutPage1.cshtml"; 4 } 5 @section head{ 6 <script type="text/javascript"> 7 8 </script> 9 } 10 @using MvcApplication1.Models 11 @model MvcApplication1.Models.UserInfo 12 <h2>Show</h2> 13 <table> 14 <tr><td>Hello,World</td></tr> 15 </table>
002-MVC布局页
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。