4
在ASP.NET MVC 3中使用RenderSection助手時,是否可以測試是否存在提供的內容部分?如何測試內容部分是否在ASP.NET MVC 3的RenderSection中提供3
例如:
@RenderSection("RightCrumbContentArea", required: false)
如果上述不被供應,我希望生成一些其他內容。
在ASP.NET MVC 3中使用RenderSection助手時,是否可以測試是否存在提供的內容部分?如何測試內容部分是否在ASP.NET MVC 3的RenderSection中提供3
例如:
@RenderSection("RightCrumbContentArea", required: false)
如果上述不被供應,我希望生成一些其他內容。
據我所知,這是可能的。
試試下面的代碼:
@if (IsSectionDefined("RightCrumbContentArea")) {
@RenderSection("RightCrumbContentArea")
} else {
<span>poo</span>
}