MVC 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>

 

 

转载于:https://www.cnblogs.com/lujianwei/archive/2013/03/11/2954420.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值