发表日期:2019-04 文章编辑:小灯 浏览次数:2839
和普通模板页一样,局部页也需要保存为.cshtml后缀,局部页面可以保存在Views/Model或Views/Shared目录下,模板中通过Html.Partial方式加载,这两个目录用法都一样,
局部页面命名规范建议为*Partial.cshtml。如下图:
如上图的TopPartial.cshtml保存页面顶部的html代码,在母版页或模板页可以通过Html.Partial方式加载,示例代码:
@{string templateDirectory = Html.TemplateDirectory();}<!DOCTYPE html> <html> <head> <title>@Html.Title()</title> <meta name="keywords" content="@Html.Keywords()" /> <meta name="description" content="@Html.Description()" /> <meta http-equiv="Content-Type" content="text/html;charset=utf-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" /> <meta name="viewport" content="width=device-width, initial-scale=1.0,user-scalable=0,minimal-ui" /> <meta name="format-detection" content="telephone=no" /> <meta name="renderer" content="webkit" /> <link rel="stylesheet" href="@templateDirectory/Css/style.css" /> <script src="@templateDirectory/Js/basic.js"></script> </head> <body> @Html.Partial("TopPartial") @RenderBody() @Html.Partial("FooterPartial") </body> </html>
日期:2019-04 浏览次数:3025
日期:2019-04 浏览次数:2994
日期:2019-04 浏览次数:2904
日期:2019-04 浏览次数:2742
日期:2019-04 浏览次数:2828
日期:2019-04 浏览次数:2994
日期:2019-04 浏览次数:2945
日期:2019-04 浏览次数:3205
日期:2019-04 浏览次数:3242
日期:2019-04 浏览次数:2905
日期:2019-04 浏览次数:3254
日期:2019-04 浏览次数:2687
日期:2019-04 浏览次数:2845
日期:2019-04 浏览次数:2954
日期:2019-04 浏览次数:2795
日期:2019-04 浏览次数:3264
日期:2019-04 浏览次数:3154
日期:2019-04 浏览次数:2838
日期:2019-04 浏览次数:3064
日期:2019-04 浏览次数:2890
日期:2019-04 浏览次数:2658
日期:2019-04 浏览次数:2960
日期:2019-04 浏览次数:2872
日期:2019-04 浏览次数:2966
日期:2019-04 浏览次数:2919
日期:2019-04 浏览次数:2792
日期:2019-04 浏览次数:2626
日期:2019-04 浏览次数:2661
日期:2019-04 浏览次数:2715
日期:2019-04 浏览次数:2756
Copyright ? 2013-2018 Tadeng NetWork Technology Co., LTD. All Rights Reserved.