frameworks
ASP.NET Core Articles, Tutorials & News
ASP.NET Core articles, tutorials, and news from the DotNetNews archive.
1196 articles Updated Page 22 of 48
Browse additional ASP.NET Core articles from the DotNetNews archive.
ASP.NET Core articles
Page 22 of 48
Newest first
-
How to Secure Your .NET APIs with OAuth2 and IdentityServer — Without the Headache
medium.com Issue #324
If you’ve ever tried securing a .NET API using OAuth2, you already know how quickly things can spiral from “simple auth” to a rabbit hole…
-
Key Innovations in ASP.NET Core 9 (and beyond)
c-sharpcorner.com Issue #323
Explore ASP.NET Core 9's key innovations: static asset optimization, enhanced Minimal APIs, Blazor improvements, security, and performance boosts for modern web apps.
-
10 No-Drama Patterns to Make Your ASP.NET Core API Controllers Incredibly Simple (in .NET 9)
medium.com Issue #323
If you want the full source code, join our community: Here
-
Distributed Caching in ASP.NET Core with Redis | A Complete Practical Guide (.NET 9 + Minimal APIs)
medium.com Issue #323
I didn’t understand caching for years.
-
Custom Middleware and Pipeline Behavior in ASP.NET Core
dotnetfullstackdev.medium.com Issue #322
The Secret Behind Every HTTP Request
-
Background Jobs in ASP.NET Core Without Hangfire (Using Hosted Services)
c-sharpcorner.com Issue #322
Discover how to implement background jobs in ASP.NET Core using Hosted Services, a lightweight and dependency-free alternative to Hangfire. Simplify task automation!
-
Binding Backend Values to Frontend in ASP.NET
c-sharpcorner.com Issue #322
Learn how to seamlessly bind backend data to your ASP.NET frontend! Explore techniques like embedding values in JavaScript, using ClientID, HiddenFields, and AJAX WebMethods.
-
Master Repository & Unit of Work Patterns in ASP.NET Core (Part-37 of 40)
c-sharpcorner.com Issue #321
Build testable, maintainable, and scalable data access layers for your applications. This comprehensive guide provides real-world examples, production-ready code, and best practices for implementing t...
-
ASP.NET Core FluentValidation & AutoMapper Guide | Clean Data & Robust APIs (Part-38 of 40)
c-sharpcorner.com Issue #321
Master ASP.NET Core data validation and object mapping with FluentValidation and AutoMapper! This guide provides a comprehensive walkthrough, from basic setup to advanced enterprise patterns. Build ro...
-
Add request logging to a database in an ASP.NET Core Web API
roundthecode.com Issue #321
Learn how to add request logging to a database in an ASP.NET Core Web API using Entity Framework Core to effectively monitor and analyse API traffic. The page Add request logging to a database in an A...
-
Life Tracker: A .NET App — 6 Basic Auth
jackymlui.medium.com Issue #321
Code fohttps://github.com/Recelis/questionnaire.net.git
-
Use swiyu, the Swiss E-ID to authenticate users with Duende and .NET Aspire
damienbod.com Issue #320
This post shows how to authenticate users using Duende IdentityServer and ASP.NET Core Identity which verifies identities (verifiable digital credentials) using the Swiss Digital identity and trust in...
-
ASP.NET Core Monitoring & Logging Mastery | Proactive Application Insights (Part-34 of 40)
c-sharpcorner.com Issue #319
Master ASP.NET Core monitoring and logging with this comprehensive guide. Learn to proactively use Application Insights, structured logging, health checks, and alerting to build observable, production...
-
Deploy Azure Apps Automatically Using Azure Pipelines (YAML)
c-sharpcorner.com Issue #319
Automate Azure app deployments with Azure Pipelines using YAML! This tutorial guides you through creating a CI/CD pipeline for seamless updates to App Service or Function Apps.
-
Understanding the worst .NET vulnerability ever: request smuggling and CVE-2025-55315
andrewlock.net Issue #319
In this post I discuss request smuggling, the recent vulnerability in ASP.NET Core with a severity score of 9.9, and how attackers could exploit it
-
ASP.NET Core Custom Middleware: Faster, Cleaner Pipelines
amarozka.dev Issue #319
Learn to build and place custom middleware for logging, localization, and multi‑tenancy to speed up ASP.NET Core apps and simplify code. Continue reading on .Net Code Chronicles »
-
Purpose of UpdatePanel in ASP.NET WebForms
c-sharpcorner.com Issue #319
Master ASP.NET WebForms UpdatePanel! Learn how to implement partial page updates, improve user experience, and avoid full page reloads with a real-time example.
-
Full-Stack ASP.NET Core Project: Build AI E-Commerce Platform with Cloud, Microservices & Blazor(Part-40 of 40)
c-sharpcorner.com Issue #319
Build a full-stack AI e-commerce platform with ASP.NET Core 8, Blazor, and microservices. This comprehensive tutorial covers cloud deployment (Azure/AWS), real-time features (SignalR), and production ...
-
Avoiding the “God Controller”: How to Refactor Your ASP.NET Core APIs
medium.com Issue #319
Transform your large controllers into clean, testable, and maintainable code the right way.
-
VS Code Live at GitHub Universe - Day 1 - Live Coding with Copilot!
youtube.com Issue #318
How to Create Custom Middleware in ASP.NET Core
-
🌐 Understanding WCF Service in .NET with Example and Benefits
c-sharpcorner.com Issue #318
Explore WCF in .NET! Learn to build robust, service-oriented applications with this comprehensive guide. Includes examples, benefits, and architecture overview.
-
Migrating ASP.NET MVC to Minimal APIs: Handling Authentication, Filters, and Best Practices
medium.com Issue #318
Disclaimer: This article was generated with AI assistance based on real-world migration experience from a production ASP.NET Core MVC API…
-
Deploying Web Apps on Azure App Service: A Step-by-Step Guide Using C#
c-sharpcorner.com Issue #318
Deploying Web Apps on Azure App Service: A Step-by-Step Guide Using C#
-
How to Use Arrays and Lists in ASP.NET C# WebForms
c-sharpcorner.com Issue #318
Master data handling in ASP.NET WebForms! Learn to use Arrays (fixed-size) and Lists (dynamic) with C# examples. Display data in GridViews and more. Ideal for developers!
-
Designing a Robust Global Exception Handling Strategy in ASP.NET Core
c-sharpcorner.com Issue #317
Implement robust ASP.NET Core global exception handling for resilient APIs. Centralize error management, ensure consistent responses, and enhance observability. #dotnet