首页 > 技术文章 > ASP.NET MVC5 Razor页面学习记录

clis 2020-03-06 01:18 原文

 

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

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

 

@RenderSection 用法

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

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

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

  @section scripts {
      内容
  }

总结:

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

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

 

推荐阅读