ASP.NET MVC5 Razor页面学习记录

条件运算符(三元: ? : )

@(condition? "Deleted" : "Created by")

@RenderSection 用法

模板页 _layout.cshtml 里面的 @RenderSection("scripts", required: false)

相当于一个占位符,占了一个位置。“required: false” 表示这部分不是必须的。

在普通页面,比如 index.cshtml 里,要用到这个位置,这样写:

  @section scripts {
      内容
  }

总结:

模板页写 @RenderSection("section名", required: false)

普通页写 @section section名{ 内容 }

猜你喜欢

转载自www.cnblogs.com/clis/p/12424204.html