frameworks
Blazor Articles, Tutorials & News
Blazor articles, tutorials, and news from the DotNetNews archive.
152 articles Updated Page 3 of 7
Browse additional Blazor articles from the DotNetNews archive.
Blazor articles
Page 3 of 7
Newest first
-
ASP.NET Core Future Trends 2025: MAUI, AI Integration, Blazor Hybrid & Cloud-Native Development (Part-35 of 40)
c-sharpcorner.com Issue #317
Explore the future of ASP.NET Core in 2025! This article dives into key trends like .NET MAUI for cross-platform development, AI integration for intelligent applications, Blazor Hybrid for web & n...
-
EF Core, Aspire, and VS 2026
DotNetNews Issue #311
A varied .NET roundup covering EF Core modeling, Aspire tracing, Visual Studio 2026, security, performance, testing, and AI-adjacent topics.
-
JetBrains .NET Days 2025 – Test Driven Development with Blazor
scottsauber.com Issue #306
Note: Slides do not tell the whole story of the talk, so take the stand alone slides with a grain of salt. Things may be taken out of context.
-
ASP.NET Community Standup - Level up eShop with Blazor in .NET 10
youtube.com Issue #303
On .NET Live | Infrastructure as Code with Pulumi
-
Meet the Microsoft Agent Framework: A .NET Developer’s Gateway to AI Agents
medium.com Issue #300
I still remember wiring together my first AI “assistant” in a Blazor app last year. Picture this: me at 2 AM, juggling Semantic Kernel…
-
SignalR using Blazor
c-sharpcorner.com Issue #299
Learn how to integrate SignalR with Blazor for real-time web applications. This guide covers both Blazor WebAssembly (hosted) and Blazor Server, providing code snippets for chat applications, server p...
-
Blazor Enhancements in Asp.Net Core 10.0
c-sharpcorner.com Issue #297
Discover faster startup times, persistent component state, improved Blazor Hybrid integration, validation enhancements, QuickGrid updates, and robust security features. Learn how these advancements ma...
-
Performance, auth and tooling
DotNetNews Issue #296
A varied .NET roundup covering low-level performance tips, passkeys, Redis caching, MAUI/XAML preview, Copilot in SQL, and deployment automation.
-
Copilot app modernization and EF Core performance
DotNetNews Issue #295
A mixed .NET lineup covering app modernization, real-time messaging, Docker, YARP, EF Core, C# 14, and production troubleshooting.
-
Blazor WASM’s Glow-Up in .NET 10: How Microsoft Finally Tackled Its Biggest Weakness
javascript.plainenglish.io Issue #294
Back in the early Blazor days, spinning up a WebAssembly app felt like waiting for dial-up internet to connect. You’d hit F5, watch a… Continue reading on JavaScript in Plain English »
-
Performance, security, and EF Core tips
DotNetNews Issue #285
A varied roundup of .NET posts on faster code, safer ASP.NET Core apps, EF Core migrations, Azure slots, logging, and team Git workflows.
-
GC myths, auth, and performance
DotNetNews Issue #284
A varied .NET roundup covering garbage collection, cancellation tokens, Minimal API auth, EF Core bulk work, security, and Visual Studio tools.
-
Build an AI Chatbot with Azure OpenAI + Blazor in .NET 8
medium.com Issue #283
AI is no longer just hype — it’s shipping in real-world apps today. Imagine combining the power of Azure OpenAI with the simplicity of…
-
Mastering the Blazor Lifecycle: When to Use Each Method (Without Losing Your Sanity)
medium.com Issue #283
I still remember the first time I messed with Blazor’s lifecycle methods — I threw all my data fetching into OnInitializedAsync, hit F5… Continue reading on Stackademic »
-
Blazor’s Big Bet in .NET 10: How I Finally Stopped Fighting the “Two-Stack” Monster
javascript.plainenglish.io Issue #282
Mini-anécdota: A few months back I was knee-deep in our SMP Pharmacy CRM, juggling a Blazor Server dashboard on one side and a chunky… Continue reading on JavaScript in Plain English »
-
Top 5 Blazor Components for Building Business Intelligence Dashboards
faciletechnolab.com Issue #276
Securing ASP.NET Core APIs with API Keys and HMAC
-
Blazor and the Future of Web Development
medium.com Issue #275
For more than a decade, web development has been dominated by JavaScript frameworks. React, Angular, and Vue have shaped how we build…
-
From Bug Farm to Bulletproof: Mastering DbContext vs IDbContextFactory (Without Burning Your App)
medium.com Issue #275
Last month I was wiring a Blazor Server page to vault credit cards (hola, Worldpay!) Continue reading on .Net Programming »
-
️ The .NET Roadmap to Mastery: From Blazor Newbie to Full-Stack Powerhouse
blog.venturemagazine.net Issue #273
When I started working with .NET, I thought I only needed to know C# and click “Build.” Spoiler alert: .NET is an entire universe — and if… Continue reading on Venture »
-
Mapster + JSON in C#: The Lean Mapping Playbook (with real-world gotchas)
medium.com Issue #270
I was debugging a Blazor API at 2 AM when a simple mapping bug made my DTOs look like they were haunted. Spoiler: it wasn’t brujería — it… Continue reading on .Net Programming »
-
.NET 10 Blazor Hybrid & Angular/React Hybrid Architecture
javascript.plainenglish.io Issue #270
.NET 10 Harnessing the Best of Both Worlds Continue reading on JavaScript in Plain English »
-
From “Why won’t this button do anything?” to Clean Blazor Callbacks (Server & WASM)
blog.venturemagazine.net Issue #267
I still remember shipping a “simple” child form and wondering why nothing updated in the parent. Spoiler: I’d passed an Action when I… Continue reading on Venture »
-
.NET 10 Preview 7 is now available!
devblogs.microsoft.com Issue #265
Today, we are excited to announce the seventh preview release of .NET 10 with enhancements across the .NET Runtime, SDK, libraries, C#, ASP.NET Core, Blazor, .NET MAUI, and more. Check out the full re...
-
Running .NET in the browser without Blazor
andrewlock.net Issue #264
In this post I show how to run .NET in your browser without using Blazor, and instead rely on lower-level abstractions provided by [JSImport] and [JSExport]
-
Cancelling Asynchronous Requests in a React & .NET Application
medium.com Issue #264
And what to consider for UI/UX when applying asynchronous logic.