ASP.NET Core Articles, Tutorials & News
ASP.NET Core articles, tutorials, and news from the DotNetNews archive.
1213 articles Updated Page 23 of 49
ASP.NET Core articles, tutorials, and news from the DotNetNews archive.
ASP.NET Core articles
Page 23 of 49
Newest first
-
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
-
How To Add Fault Handling In ASP.NET Core With Polly | Clean Architecture, .NET 9.
medium.com Issue #317
Part 1 — Introduction, Architecture, and Project Setup
-
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...
-
Enterprise-Grade CI/CD for ASP.NET Core (Part-33 of 40)
c-sharpcorner.com Issue #317
This article, part 33 of a 40-part series, details enterprise-grade CI/CD for ASP.NET Core applications. It covers project structure, Docker configuration, comprehensive testing (unit & integratio...
-
Background Jobs Revolution: Mastering Automated Processing in ASP.NET Core (Part - 30 of 40)
c-sharpcorner.com Issue #316
Revolutionize your ASP.NET Core applications with robust background job processing! This comprehensive guide, part 30 of 40, covers everything from IHostedService to Hangfire, Quartz.NET, and Coravel....
-
What’s new in .NET 10
medium.com Issue #316
Explore the most interesting new features in C# 14, ASP.NET Core, and .NET 10.
-
Our Favorite New Features in .NET 10 and C# 14
blog.leadingedje.com Issue #315
See our favorite new C#, ASP.NET, and EF Core features in .NET’s latest LTS release Continue reading on Leading EDJE »
-
ASP.NET Core Performance Hacks: Async, Profiling & Optimization Techniques (Part - 26 of 40)
c-sharpcorner.com Issue #315
Unlock peak ASP.NET Core performance! This comprehensive guide (Part 26 of 40) dives into advanced optimization techniques. Master async/await, EF Core tuning, caching strategies, and profiling tools....
-
ASP.NET Core Dependency Injection From Scopes & Lifetimes
medium.com Issue #315
You know the basics. AddTransient, AddScoped, AddSingleton. It all seems so straightforward.