ASP.NET Core Articles, Tutorials & News
ASP.NET Core articles, tutorials, and news from the DotNetNews archive.
1213 articles Updated Page 16 of 49
ASP.NET Core articles, tutorials, and news from the DotNetNews archive.
ASP.NET Core articles
Page 16 of 49
Newest first
-
.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…
-
Why My ASP.NET Core API Started Freezing — And It Turned Out to Be Garbage Collection
medium.com Issue #384
The API worked perfectly in development. It passed all tests. Then under real traffic, it started randomly freezing for 1–2 seconds.
-
Force step up authentication in web applications
damienbod.com Issue #384
The post shows how to implement a step up authorization using the OAuth 2.0 Step Up Authentication Challenge Protocol RFC 9470. The application uses ASP.NET Core to implement the API, the web applicat...
-
Designing Resilient ASP.NET Core APIs Using .NET 8 Resilience Pipelines
c-sharpcorner.com Issue #384
Explore .NET 8 Resilience Pipelines, Microsoft's built-in solution for building fault-tolerant ASP.NET Core APIs. Learn how to implement retry, timeout, and circuit breaker patterns for robust applica...
-
Value vs Reference Types: Why My ASP.NET Core Code Behaved Unexpectedly
medium.com Issue #383
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…
-
Why My ASP.NET Core API Started Freezing — And It Turned Out to Be Garbage Collection
medium.com Issue #383
The API worked perfectly in development. It passed all tests. Then under real traffic, it started randomly freezing for 1–2 seconds.
-
Designing Resilient ASP.NET Core APIs Using .NET 8 Resilience Pipelines
c-sharpcorner.com Issue #383
Explore .NET 8 Resilience Pipelines, Microsoft's built-in solution for building fault-tolerant ASP.NET Core APIs. Learn how to implement retry, timeout, and circuit breaker patterns for robust applica...
-
Code That Breathes: Async/Await and Cooperative Flow in ASP.NET Core
bipinjoshi.net Issue #382
In modern software systems, the greatest cost is rarely computation—it is waiting. Applications spend significant time waiting for I/O operations, network responses, or database queries. This waiting,...
-
Microservices Architecture with .NET
c-sharpcorner.com Issue #380
Explore microservices architecture with .NET! Learn to build scalable, flexible apps using ASP.NET Core, Docker, and best practices. Includes practical examples.