创建名称为SiteLayout.cshtml的视图

MVC4 Layouts布局视图--局部视图
@{
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>.
}
MVC4 Layouts布局视图--局部视图

 

Index.cshtml引入视图

MVC4 Layouts布局视图--局部视图
@{
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>
MVC4 Layouts布局视图--局部视图
<footer>@RenderSection("Footer", required: false)</footer>
MVC4 Layouts布局视图--局部视图
<footer>
@if (IsSectionDefined("Footer")) {
RenderSection("Footer");
}
else {
<span>This is the default footer.</span>
}
</footer>
MVC4 Layouts布局视图--局部视图

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>

相关文章:

  • 2021-10-18
  • 2021-11-09
  • 2021-10-18
  • 2021-07-02
  • 2021-11-30
  • 2021-11-01
  • 2021-11-27
  • 2021-09-10
猜你喜欢
  • 2021-11-13
  • 2021-01-31
  • 2021-09-14
  • 2022-01-05
  • 2021-09-14
  • 2021-09-08
  • 2021-08-16
  • 2019-08-03
相关资源
相似解决方案