frameworks
ASP.NET Core Articles, Tutorials & News
ASP.NET Core articles, tutorials, and news from the DotNetNews archive.
1196 articles Updated Page 9 of 48
Browse additional ASP.NET Core articles from the DotNetNews archive.
ASP.NET Core articles
Page 9 of 48
Newest first
-
Implementing the Sidecar Pattern in Microservices-based ASP.NET Core Applications
news.google.com Issue #452
Implementing the Sidecar Pattern in Microservices-based ASP.NET Core Applications
-
I Built a Disaster Relief Web App… Then Realized I Didn’t Fully Understand It
medium.com Issue #452
I built a Disaster Relief Web App using C# and .NET.
-
Disable HTTP caching by default in ASP.NET Core APIs
meziantou.net Issue #452
When building APIs with ASP.NET Core, it's crucial to explicitly control caching behavior. Unlike web pages where caching often improves user experience, API responses should not be cached by default ...
-
Implementing Localization in ASP.NET
medium.com Issue #452
When I first started implementing localization in ASP.NET Core MVC, I thought it would be a small feature.
-
How Enterprise Software Is Built with ASP.NET in 2026: What Actually Happens Behind the Scenes
news.google.com Issue #452
How Enterprise Software Is Built with ASP.NET in 2026: What Actually Happens Behind the Scenes
-
AsGuard: A Lightweight Request & Exception Logger for ASP.NET Core (With Built-in Dashboard
medium.com Issue #451
Stop guessing what’s happening in your API — log, monitor, and debug requests in real time without external tools.
-
DataAnnotations or FluentValidation? Stop Picking One for Everything
serkanozbeykurucu.medium.com Issue #451
I keep getting the same question from .NET developers: “Should I use FluentValidation or DataAnnotations?”
-
ASP.NET Community Standup
news.google.com Issue #450
ASP.NET Community Standup - Why Aren't You Using Minimal APIs? (avy3AoSZsS)
-
MERN vs .NET vs Node.js: How to Pick the Best Tech Stack for Your Project in 2026
medium.com Issue #447
Choosing the right technology stack is one of the most important decisions when starting a web development project. With multiple powerful…
-
CVE-2026-40372: ASP.NET Core Privilege Escalation
news.google.com Issue #447
CVE-2026-40372: ASP.NET Core Privilege Escalation
-
The best way to create email templates in .NET
roundthecode.com Issue #447
Learn how to generate reusable email HTML using Razor Views in ASP.NET Core with strongly-typed models. The page The best way to create email templates in .NET appeared on Round The Code.
-
ASP.NET, Factory Patterns, and the Illusion of Control
bipinjoshi.net Issue #447
In the world of ASP.NET and .NET, there is a quiet but persistent instinct: the desire to control how things come into existence. Object creation, in particular, feels like something that must be care...
-
.NET 10.0.7 Out-of-Band Security Update
devblogs.microsoft.com Issue #446
We are releasing .NET 10.0.7 as an out-of-band (OOB) update to address a security issue introduced in Microsoft.AspNetCore.DataProtection Security update details This release includes a fix for
-
Caching a geo-restricted app without the cache exploding
melkisetoglu.medium.com Issue #446
A small .NET pattern that’s really just a small idea — and works in any web stack.
-
Serving Media from Azure Blob Storage in ASP.NET Core : Downloads, Streaming and Secure Tickets
medium.com Issue #445
Azure Blob Storage is one of those services that quietly underpins a huge number of production systems. It’s where your audio recordings…
-
Why Converting Browser HTML to PDF in .NET Is Harder Than You Think
medium.com Issue #445
You open a web page, inspect the DOM, and think: “I’ll just grab the HTML and convert it to PDF.”
-
Setup CI Build Pipeline in Azure DevOps for ASP.NET Core Web API
medium.com Issue #444
Subscibe to my weekly .NET newsletter
-
Global Error Handling in ASP.NET Core Web API: Building Reliable, Secure, and Production-Ready APIs
achuchiwilliam.medium.com Issue #444
Modern backend systems are expected to be stable, predictable, and easy to maintain. Users may forgive a failed request, but they rarely…
-
Fail Fast — for incorrect or missing configuration
medium.com Issue #444
In the .NET world, it’s common to store configuration such as connection strings, topic names, API keys, and log levels in configuration…
-
ASP.NET Community Standup: Simplifying Entra ID authentication with AI
youtube.com Issue #443
Tuesday Coding Tip 96 — Reference equality in C#
-
-
I Built a Lead-Generation Funnel With Blazor — Here’s Every Architectural Decision I Made
fries-dotnet-legacy.medium.com Issue #443
A practitioner’s walkthrough of a real-world Blazor WebAssembly application with quiz engine, Double-Opt-In, PDF delivery, and fully…
-
ASP.NET Core (Latest Microsoft Release)
c-sharpcorner.com Issue #443
This article explores the latest advancements in ASP.NET Core with the release of .NET 10, focusing on performance improvements, enhanced Minimal APIs, and Blazor updates. It provides practical code e...
-
Dependency Injection as a Practice of Surrender
binaryintellect.net Issue #443
In the early stages of a developer’s journey, there is a natural inclination toward control. We construct our dependencies explicitly, wire objects together manually, and take comfort in knowing exact...
-
Feature Management in .NET | Real Production Pattern with Targeting Filter
medium.com Issue #442
Modern applications don’t release features to everyone at once — they rely on controlled rollouts, user targeting, and safe deployments.