Is it possible to make Razor sections optional?

后端 未结 5 1344
悲哀的现实
悲哀的现实 2021-01-11 11:45

If I have a page with:


    @section SomeStuff {
        This is a section I just addered
    }


         


        
5条回答
  •  伪装坚强ぢ
    2021-01-11 12:45

    For a certain layout not to render certain section you need to have something like this is your layout.cshtml

    @RenderSection("Somestuff", required:false)
    

提交回复
热议问题