Add dual authentication (2FA TOTP) to a Blazor application
I thought it was complex and even expensive. It isn’t. Here’s how I added TOTP-style two-factor authentication (2FA) to a Blazor application.👉 Repo GitHub: tossnet/Blazor-2FA …
.NET developer. 💜 Blazor
I thought it was complex and even expensive. It isn’t. Here’s how I added TOTP-style two-factor authentication (2FA) to a Blazor application.👉 Repo GitHub: tossnet/Blazor-2FA …
In a Blazor project, it’s common to use routes for navigating between pages. One interesting approach is to centralize the definition of these routes in …
This article explores the Blazor-WinOld repository, a fascinating project that reimagines the classic look and feel of older Windows versions (from Windows 98 to Windows …
Blazor-Clippy-AI leverages Azure Semantic Kernel and Blazor’s NavigationManager to create a proactive, intelligent assistant that enhances your web experience
In .NET development, managing dependencies is a critical task—especially when multiple projects share the same libraries. In this post, we’ll explore how centralized NuGet package …
Implement the cache-busting offered by Blazor with dotnet 9 in your applications
My problem: When my application is launched, I display my component without any data. The user loads a file. The data is then drawn by …
Cache-busting is a technique used to ensure that the user accesses the latest version of your files, be they JavaScript, style sheets (CSS) or images. …