MVC4 Layouts布局视图--局部视图


创建名称为SiteLayout.cshtml的视图

@{
Layout = "~/Views/Shared/SiteLayout.cshtml";
www.it-ebooks.info
68 x CHAPTER 3 VIEWS
View.Title = "The Index!";
}
<p>This is the main content!</p>
@section Footer {
This is the <strong>footer</strong>.
}

Index.cshtml引入视图

@{
Layout = "~/Views/Shared/SiteLayout.cshtml";
View.Title = "The Index!";
}
<p>This is the main content!</p>
<!DOCTYPE html>
<html>
<head><title>The Index!</title></head>
<body>
<h1>The Index!</h1>
<div id="main-content"><p>This is the main content!</p></div>
</body>
</html>
<footer>@RenderSection("Footer", required: false)</footer>
<footer>
@if (IsSectionDefined("Footer")) {
RenderSection("Footer");
}
else {
<span>This is the default footer.</span>
}
</footer>

ViewStart

@{
Layout = "~/Views/Shared/_Layout.cshtml";
}

控制器中返回局部视图

public class HomeController : Controller {
public ActionResult Message() {
ViewBag.Message = "This is a partial view.";
return PartialView();
}
}

视图中获取变量方式

<h2>@ViewBag.Message</h2>

AJA方式获取

<div id="result"></div>
<script type="text/javascript">
$(function(){
$('#result').load('/home/message');
});
</script>
优质内容筛选与推荐>>
1、form表单提交问题
2、Linux下Subversion的使用
3、UESTC 2014 Summer Training #20
4、笔记39 Spring Web Flow——订单流程(收集顾客信息)
5、CocoaAsyncSocket 套接字


长按二维码向我转账

受苹果公司新规定影响,微信 iOS 版的赞赏功能被关闭,可通过二维码转账支持公众号。

    阅读
    好看
    已推荐到看一看
    你的朋友可以在“发现”-“看一看”看到你认为好看的文章。
    已取消,“好看”想法已同步删除
    已推荐到看一看 和朋友分享想法
    最多200字,当前共 发送

    已发送

    朋友将在看一看看到

    确定
    分享你的想法...
    取消

    分享想法到看一看

    确定
    最多200字,当前共

    发送中

    网络异常,请稍后重试

    微信扫一扫
    关注该公众号





    联系我们

    欢迎来到TinyMind。

    关于TinyMind的内容或商务合作、网站建议,举报不良信息等均可联系我们。

    TinyMind客服邮箱:support@tinymind.net.cn