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: 12/21/2023 5:08:16 PM
Posted By: Comfortably Anonymous
Viewed: 322 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.See the GitHub source here: Blazor Shared AuthenticationNote that this will only work with .NET 8, previous versions of .NET used a different way of doing authentication.
Posted At: 1/26/2023 2:43:09 PM
Posted By: Comfortably Anonymous
Viewed: 301 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.