发表日期:2019-04 文章编辑:小灯 浏览次数:2732
和普通模板页一样,局部页也需要保存为.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 浏览次数:2933
日期:2019-04 浏览次数:2891
日期:2019-04 浏览次数:2784
日期:2019-04 浏览次数:2632
日期:2019-04 浏览次数:2717
日期:2019-04 浏览次数:2887
日期:2019-04 浏览次数:2835
日期:2019-04 浏览次数:3094
日期:2019-04 浏览次数:3142
日期:2019-04 浏览次数:2813
日期:2019-04 浏览次数:3138
日期:2019-04 浏览次数:2587
日期:2019-04 浏览次数:2744
日期:2019-04 浏览次数:2864
日期:2019-04 浏览次数:2708
日期:2019-04 浏览次数:3171
日期:2019-04 浏览次数:3047
日期:2019-04 浏览次数:2731
日期:2019-04 浏览次数:2953
日期:2019-04 浏览次数:2788
日期:2019-04 浏览次数:2553
日期:2019-04 浏览次数:2859
日期:2019-04 浏览次数:2771
日期:2019-04 浏览次数:2870
日期:2019-04 浏览次数:2808
日期:2019-04 浏览次数:2674
日期:2019-04 浏览次数:2533
日期:2019-04 浏览次数:2570
日期:2019-04 浏览次数:2620
日期:2019-04 浏览次数:2656
Copyright ? 2013-2018 Tadeng NetWork Technology Co., LTD. All Rights Reserved.