frameworks
ASP.NET Core Articles, Tutorials & News
ASP.NET Core articles, tutorials, and news from the DotNetNews archive.
1196 articles Updated Page 15 of 48
Browse additional ASP.NET Core articles from the DotNetNews archive.
ASP.NET Core articles
Page 15 of 48
Newest first
-
Middleware Deep Drive in .NET
medium.com Issue #398
Middleware in .NET acts as a request pipeline component that handles logging, authentication, routing, and error handling. Each middleware…
-
Smart AI Customer Support Chatbot with Angular + ASP.NET Core + Python (ML/NLP)
medium.com Issue #398
Transforming Customer Support with AI & Full-Stack Engineering
-
Swagger UI: Architecture, Configuration, and Enterprise Implementation Guide
c-sharpcorner.com Issue #398
Explore Swagger UI: architecture, configuration, and implementation for interactive API documentation. Enhance development and collaboration in modern systems.
-
Standardizing Global Errors: Using IExceptionHandler and Problem Details Services in ASP.NET 10
medium.com Issue #397
In this article, we’ll explore using the modern approach to error handling in ASP.NET 10 by using the IExceptionHandler interface. We will…
-
C# 13 & .NET 9 — Part 16: Blazor, Blazor Server vs. Blazor WebAssembly
medium.com Issue #397
This article is based on Chapter 16: Packaging and Deployment
-
Connecting React and .NET Web API:How They Talk To Each Other??
medium.com Issue #396
When I first started learning web development, I thought that connecting a frontend to a backend was like magic. You click a button, and…
-
Modernize WPF Desktop applications to ASP.NET Core MVC with Amazon Q Developer
news.google.com Issue #396
Modernize WPF Desktop applications to ASP.NET Core MVC with Amazon Q Developer
-
JWT Encoder ASP.NET C# Using (HS256)
c-sharpcorner.com Issue #396
Learn how to implement JWT (JSON Web Token) encoding with HS256 in ASP.NET C#. Secure your APIs with this step-by-step guide, including code examples and best practices.
-
.NET 11 Preview 1 is now available!
devblogs.microsoft.com Issue #395
Find out about the new features in .NET 11 Preview 1 across the .NET runtime, SDK, libraries, ASP.NET Core, Blazor, C#, .NET MAUI, and more! The post .NET 11 Preview 1 is now available! appeared firs...
-
How Is .NET Still Relevant for Modern Web Development Projects?
medium.com Issue #395
Modern web development evolves rapidly. New frameworks emerge, JavaScript libraries trend overnight, and cloud-native tools reshape how…
-
The Exhale: Cancellation, Backpressure, and Graceful Shutdown in ASP.NET Core
bipinjoshi.net Issue #395
Scalability is not only about handling more work—it is equally about knowing when to stop. Mature systems, like mature practices in meditation, recognize that continuation is not always the goal.
-
Why Companies Are Still Using ASP.NET Web Forms in 2026 (And Why That’s Not as Crazy as You Think)
medium.com Issue #395
If you spend enough time on developer Twitter, Reddit, or YouTube, you’ll eventually hear the same statement repeated like a mantra:
-
Why Enterprises Prefer .NET Development Services: Real Industry Insights & Benefits
medium.com Issue #394
In a digital-first world where performance, security, and scalability matter more than ever, enterprises are constantly evaluating the…
-
Dotnet Core Identity With .NET CLI
ravindradevrani.medium.com Issue #394
Aspnet core identity provides an UI to registration, login, manage users, password, external authentication (google, twitter, facebook…
-
C# ASP.NET Core MVC: Building Your First Application — A Complete Guide from Models to Controllers
medium.com Issue #393
A Step-by-Step Tutorial for Creating Models, Views, and Controllers from Scratch
-
How to Implement Custom Response Caching in ASP.NET Core
c-sharpcorner.com Issue #393
Boost ASP.NET Core performance with response caching! Learn how to implement it using NCache for scalable, multi-server environments. Reduce latency and server load.
-
ASP.NET MVC vs ASP.NET Core MVC
c-sharpcorner.com Issue #393
Confused about ASP.NET MVC vs. ASP.NET Core MVC? This guide breaks down the key differences: platform support, performance, project structure, configuration, and more! Learn which is right for you.
-
Synchronous vs Asynchronous API Calls
nodogmablog.bryanhogan.net Issue #392
I have read a bunch of blog posts talking about synchronous and asynchronous API calls, but I found that most of them mix the idea of an API call being synchronous or asynchronous with the idea of the...
-
ASP.NET Core Security Explained: Modern Authentication, Authorization, and JWT
medium.com Issue #392
Build secure ASP.NET Core apps in .NET 10 using JWT auth, policy-based authorization, claims, roles, and best practices with a Blog API. Continue reading on Syncfusion »
-
How to integrate Stripe with ASP.NET Core?
medium.com Issue #392
Stripe is the most popular payment provider, and if you’re wondering how to integrate it with ASP.NET Core, then welcome to the hood.
-
How Routing Works in ASP.NET Core
malshikay.medium.com Issue #390
Routing is one of the most important concepts in ASP.NET Core. Every HTTP request that comes into your application is mapped to a specific…
-
Func vs EventCallback: They Look the Same — Until the UI Gets Involved
medium.com Issue #387
“It’s async. It compiles. It works.” So why does Blazor insist on having EventCallback?
-
Use client assertions in ASP.NET Core using OpenID Connect, OAuth DPoP and OAuth PAR
damienbod.com Issue #387
This post looks at implement client assertions in an ASP.NET Core application OpenID Connect client using OAuth Demonstrating Proof of Possession (DPoP) and OAuth Pushed Authorization Requests (PAR). ...
-
Why Scalar is Replacing Swagger in .NET 9 and 10
c-sharpcorner.com Issue #386
Discover why .NET 9 replaces Swagger with native OpenAPI using Microsoft.AspNetCore.OpenApi and modern UIs like Scalar. Streamline API testing with Postman!
-
Value vs Reference Types: Why My ASP.NET Core Code Behaved Unexpectedly
medium.com Issue #384
Have you ever been puzzled why changing a variable sometimes changes another one, but other times it doesn’t? Or why your program’s memory…