我正在查看很多教程,从web-forms
和.master
转换为MVC Master布局。
我遇到的问题是关于嵌入式全局文件与单个页面自己的文件。
(files =样式和脚本)
我的观点中的旁注我实现了一个小命名约定/规则,以便layouts-masters有一个LO
后缀,
所以,如果我的应用程序命名为“SAdmin”,那么我的布局(master)-chtml将命名为:_SAdminLO.cshtml
在我的布局大师中我有:
(为简单起见)只是一个主栏 - 链接(这样所有页面都有“链接”顶栏)
这是主要布局
[textlink1] | [textlink2] | [textlink3] | [textlink4] ....
然后我有索引页面(它的名字是cpanel)
在我的索引cpanel.chtml
中我除了主要布局的文本栏之外还添加了图标...顶部栏的复制形式为
图标菜单
[IMG] [IMG]
page_name page_name
[IMG] [IMG]
page_name page_name
所以布局主人_SAdminLO.cshtml
+ cpanel.chtml
- 来自我应用的“主页”
现在我的个人网页在行动中完全独立
但他们需要的只是顶栏的css + html ,而不是cpanel
(索引)
所以我的情况是: 在rightclick-> view-source,我可以看到我的所有页面都有双html标签 -
<html> + <head> + <body> markup of `LO`
&安培;
<html> + <head> + <body> markup of `individual.cshtml `
文件:
-master -
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width" />
<link href='@Href("~/Content/css/GlobUtils.css")' rel='stylesheet' type='text/css' />
<title>@ViewBag.Title</title>
@Scripts.Render("~/js")// C# bundle
@RenderSection("head", false)
</head>
<body id="bodid">
<h2>Cpanel</h2>
<div id="navbar">
<ul id="nav">
<div class="menu-main-container">
<ul id="menu-main" class="menu">
<li id="menu-item-0" class="menu-item menu-item-type-post_type menu-item-object-page current-menu-item page_item page-item-0 current_page_item menu-item-0">
@Html.ActionLink("Cpanel", "Cpanel", "ControlPanel")
</li>
<li id="menu-item-1" class="menu-item menu-item-type-post_type menu-item-object-page current-menu-item page_item page-item-1 current_page_item menu-item-1">
@Html.ActionLink("Templates Generator", "TemplateGenerator", "ControlPanel")
</li>
<li id="menu-item-2" class="menu-item menu-item-type-post_type menu-item-object-page current-menu-item page_item page-item-2 current_page_item menu-item-2">
@Html.ActionLink("Content Editor", "ContentEditor", "ControlPanel")
</li>
<li id="menu-item-3" class="menu-item menu-item-type-post_type menu-item-object-page current-menu-item page_item page-item-3 current_page_item menu-item-2">
@Html.ActionLink("Files Uploader", "FilesUploader", "ControlPanel")
</li>
<li id="menu-item-4" class="menu-item menu-item-type-post_type menu-item-object-page current-menu-item page_item page-item-4 current_page_item menu-item-2">
@Html.ActionLink("Code Dev", "CodeDev", "ControlPanel")
</li>
</ul>
</div>
</ul>
</div>
@RenderBody()
</body>
</html>
someindividualpage.chtml
@{
Layout = "~/Views/Shared/_EvProAdminLO.cshtml";
}
@model MvcE.Models.IndexModel.CreatedTemplateJPacket
<!DOCTYPE html>
@{
ViewBag.Title = "TemplateGenerator";
}
<html>
<head>
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Template Generator</title>
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css" />
<script src="http://cdnjs.cloudflare.com/ajax/libs/jqueryui/1.11.0/jquery-ui.js"></script>
<script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>
<link href='@Href("~/Content/css/Chrm_TemplateGenerator.css")' rel="stylesheet" type="text/css" />
</head>
<body id="bodid">
<div id="DivEditor">
<h1 id="ContH"> ControlPanel - TemplateGenerator</h1>
<div class="container-fluid">
<div>
<a class="btn btn-CtrlsTmplt" id="save" href="#">save</a>
<a class="btn btn-CtrlsTmplt" id="load" href="#">load</a>
<a class="btn btn-CtrlsTmplt" id="clear" href="#">clear</a>
<input type="text" id="scr1" class="input_Border_AndBGClear" />
</div>
<hr/>
@*----------------------------------localData-------------------------------------*@
<div id="localData">
<input id="DataValue_FormFileds" type="hidden" />
</div>
</div>
</div>
<div id="SaveNewTmpltWwrap">
</div>
<script src='@Href("~/Js/jspart2.js")' type="text/javascript"></script>
</body>
答案 0 :(得分:5)
也许我不太了解,但似乎你可以使用自定义部分。
<强> _layout 强>
session prefix number disposition catcode
0 114 h 131 support J6200
1 114 h 138 oppose L1100
2 114 h 140 support NaN
<强> SomePage.cshtml 强>
<html>
<head>
<title>@ViewBag.Title</title>
@* common script, css *@
<script src="jquery.js"></script>
@* variable script, css *@
@RenderSection("customHead", required: false)
</head>
<body>
<!-- nav bar here -->
@RenderBody()
@RenderSection("footer", required: false)
</body>
</html>
因为声明@{
Layout = "~/Views/Shared/_EvProAdminLO.cshtml";
ViewBag.Title = "Some Page 1";
}
@section customHead {
<script src="page1.js"></script>
}
@* no <html>,<head>,<body> *@
@* inserted into RenderBody() *@
<div id="page1content">
...
</div>
的部分除非视图包含该部分,否则它将不会尝试渲染任何内容。
您可以更改每页的部分内容。
<强> SomePage2.cshtml 强>
required: false
您可以使用部分视图和子操作来执行可变内容呈现,而不是多个布局。
<强> SomePage3.cshtml 强>
@{
Layout = "~/Views/Shared/_EvProAdminLO.cshtml";
ViewBag.Title = "Some Page 2";
}
@section customHead {
<script src="page2.js"></script>
}
@section footer {
<div>footer</div>
}
<div id="page2content">
</div>
现在大部分布局内容已被删除,它将成为内容包含,而不是使用排除规则定义所有内容。
我发现布局页面更少,使用局部图更易于维护,页面更易于理解通过查看视图页面呈现的内容。