Programming: Blazor Server

Blazor Server provides support for hosting Razor components on the server in an ASP.NET Core app. UI updates are handled over a SignalR connection.

The runtime stays on the server and handles:

  • Executing the app's C# code.
  • Sending UI events from the browser to the server.
  • Applying UI updates to a rendered component that are sent back by the server.

Posted At: 9/23/2025 8:00:03 AM
Posted By: Comfortably Anonymous
Viewed: 406 times
0 Dislikes: 0
Literally every time I use an EventCallback in Blazor, I stop and think "What if I was still using Web Forms?" Then I look at the sun shining, listen to the birds singing outside my window, and understand what it means when people say life is good. :D
Posted At: 12/21/2023 5:08:16 PM
Posted By: Comfortably Anonymous
Viewed: 3836 times
0 Dislikes: 0
Just got done putting together a demo of how to share authentication between multiple .NET 8 Blazor apps so that users do not need to re-log-in to each app as they move between them.<br/>See the GitHub source here: Blazor Shared Authentication<br/>Note that this will only work with .NET 8, previous…
Posted At: 1/26/2023 2:43:09 PM
Posted By: Comfortably Anonymous
Viewed: 2826 times
0 Dislikes: 0
There are two versions of Blazor (Blazor Server and Blazor WebAssembly), I've been getting heavily into Blazor Server lately, so I'll post stuff here that will come in handy to others.