Static Server Rendering (SSR)
How this page works
This page has no @rendermode — it renders as static HTML on the server and is sent to the browser fully formed. There is no Blazor runtime running in the browser for this page.
View source (Ctrl+U) to confirm the HTML is fully pre-rendered. Bootstrap JS still works (try the accordion below) because it runs as plain browser JavaScript.
Cards
Alpha
First item rendered at build time on the server.
SSRBeta
No JavaScript framework required for this content.
StaticGamma
Bootstrap styled with your custom theme tokens.
BootstrapStatic Table
| # | Name | Status | Score |
|---|---|---|---|
| 1 | Item 1 | Pending | 59 |
| 2 | Item 2 | Active | 76 |
| 3 | Item 3 | Pending | 93 |
| 4 | Item 4 | Active | 110 |
| 5 | Item 5 | Pending | 127 |
Accordion (Bootstrap JS — no Blazor needed)
Server-Side Rendering means the HTML is generated on the server and sent to the client. No client-side framework runtime is required to display the content.
Use SSR for content pages, landing pages, and anything that doesn't need real-time interactivity. It loads faster and is better for SEO.
SSR cannot handle C# event handlers (@onclick, @oninput, etc.) or maintain component state between interactions. For that, use Interactive WASM or Server render modes.