From 8fefb62a4ab5bb9f9e01e7420ce253997dbf67c9 Mon Sep 17 00:00:00 2001 From: Luke Latham <1622880+guardrex@users.noreply.github.com> Date: Mon, 5 May 2025 10:33:27 -0400 Subject: [PATCH 1/2] Cross-link Sections article to new content --- aspnetcore/blazor/components/sections.md | 1 + 1 file changed, 1 insertion(+) diff --git a/aspnetcore/blazor/components/sections.md b/aspnetcore/blazor/components/sections.md index 7283c0cb89c5..317d13f1917d 100644 --- a/aspnetcore/blazor/components/sections.md +++ b/aspnetcore/blazor/components/sections.md @@ -92,3 +92,4 @@ A section interacts with other Blazor features in the following ways: * [Cascading values](xref:blazor/components/cascading-values-and-parameters) flow into section content from where the content is defined by the component. * Unhandled exceptions are handled by [error boundaries](xref:blazor/fundamentals/handle-errors#error-boundaries) defined around a component. * A Razor component configured for [streaming rendering](xref:blazor/components/rendering#streaming-rendering) also configures section content provided by a component to use streaming rendering. +* A section that contains interactive components can't be statically rendered in a layout component in a Blazor Web App that adopts per-page/component rendering. For more information, see . From f5c4210a2b2f50f8a49dfc46cefae816ac3208ef Mon Sep 17 00:00:00 2001 From: Luke Latham <1622880+guardrex@users.noreply.github.com> Date: Mon, 5 May 2025 10:38:49 -0400 Subject: [PATCH 2/2] Updates --- aspnetcore/blazor/components/sections.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aspnetcore/blazor/components/sections.md b/aspnetcore/blazor/components/sections.md index 317d13f1917d..6a1fca94cdb1 100644 --- a/aspnetcore/blazor/components/sections.md +++ b/aspnetcore/blazor/components/sections.md @@ -92,4 +92,4 @@ A section interacts with other Blazor features in the following ways: * [Cascading values](xref:blazor/components/cascading-values-and-parameters) flow into section content from where the content is defined by the component. * Unhandled exceptions are handled by [error boundaries](xref:blazor/fundamentals/handle-errors#error-boundaries) defined around a component. * A Razor component configured for [streaming rendering](xref:blazor/components/rendering#streaming-rendering) also configures section content provided by a component to use streaming rendering. -* A section that contains interactive components can't be statically rendered in a layout component in a Blazor Web App that adopts per-page/component rendering. For more information, see . +* A section that contains interactive components is statically rendered (non-functional) in a layout component in a Blazor Web App that adopts per-page/component rendering. For more information, see .