IT

필수가 아닌 RenderSection이 어떻게 알 수 있습니까?

lottoking 2020. 9. 9. 08:15
반응형

필수가 아닌 RenderSection이 어떻게 알 수 있습니까?


@* Omitted code.. *@
@RenderBody()
@RenderSection("Sidebar", required: false)

Omitted codeRenderSection Sidebar이 있는지 여부를 부품 에서 알 수있는 방법이 있습니까?


@if (IsSectionDefined("Sidebar"))
{
    @RenderSection("Sidebar")
}
else
{
    <div>Some default content</div>
}

참고 URL : https://stackoverflow.com/questions/6769336/how-can-i-know-if-a-non-required-rendersection-exists

반응형