Blazor Layouts with several placeholders (Header/Footer/etc) like MVC Sections/WebForms #10131
Labels
area-blazor
Includes: Blazor, Razor Components
Needs: Design
This issue requires design work before implementating.
Milestone
What I'm trying to achieve is a component like this:
Suppose I want to dedicate that @extraheader and @ExtraFooter to be implemented by all the children who use this layout that need to. Is this possible in Blazor right now somehow?
I know we have @Body, but that only supports nesting, not putting content in other places like MVC Sections.
You could do that too in webforms with something like this inside a MasterPage:
<asp:ContentPlaceHolder id="Header" runat="server"></asp:ContentPlaceHolder>
<asp:ContentPlaceHolder id="Body" runat="server"></asp:ContentPlaceHolder>
<asp:ContentPlaceHolder id="Footer" runat="server"></asp:ContentPlaceHolder>
Thanks!
The text was updated successfully, but these errors were encountered: