Posts

Showing posts from January, 2024

.Net 8 and Blazor Render Modes Changes

Image
With the release of .Net 8, Blazor got some great updates. Blzoar is now a full-featured development system.  With the latest Blazor, you can build websites, web applications, desktop applications, Progressive Web Applications, tablet applications, and even mobile applications.  That is a long list of things you can build with Blazor and C#. Render Modes .Net 8 has added new render mores and has made great improvements to the old render modes.  These changes have really pushed Blazor to new heights of building great applications. The old render modes are server and web assembly.   Server mode  This mode would use SingleR to open web sockets to the server.  In this mode, everything is compiled on the server and sends just the changes to the client.  It allows you to isolate your code to the server and keep your code secure.  The downside is that it can get expensive to scale to handle a large amount of users. Web Assembly This mode allows everything to be executed on the client. On the