Is it possible to make Razor sections optional?

后端 未结 5 1393
悲哀的现实
悲哀的现实 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:25

    You could do:

      @if (condition) {
         @RenderSection("SomeStuff")
      }
    

    Or just use a conditional statement directly rather than @RenderSection:

     @if (yourCondition) {
        This is a section I just addered
     }
    

提交回复
热议问题