Skip to content
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions aspnetcore/blazor/components/render-modes.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
---
title: ASP.NET Core Blazor render modes
ai-usage: ai-assisted
author: guardrex
description: Learn about Blazor render modes and how to apply them in Blazor Web Apps.
monikerRange: '>= aspnetcore-8.0'
ms.author: wpickett
ms.custom: mvc
ms.date: 11/11/2025
ms.date: 12/08/2025
uid: blazor/components/render-modes
---
# ASP.NET Core Blazor render modes
Expand Down Expand Up @@ -156,7 +157,7 @@ The <xref:Microsoft.AspNetCore.Components.Routing.Router> component propagates i

You also typically must set the same interactive render mode on the [`HeadOutlet` component](xref:blazor/components/control-head-content#headoutlet-component), which is also found in the `App` component of a Blazor Web App generated from the project template:

```
```razor
<HeadOutlet @rendermode="InteractiveServer" />
```

Expand All @@ -173,7 +174,7 @@ To enable global interactivity when creating a Blazor Web App:

For more information, see <xref:blazor/tooling>.

## Apply a render mode programatically
## Apply a render mode programmatically

Properties and fields can assign a render mode.

Expand Down