frameworks
ASP.NET Core Articles, Tutorials & News
ASP.NET Core articles, tutorials, and news from the DotNetNews archive.
1196 articles Updated Page 31 of 48
Browse additional ASP.NET Core articles from the DotNetNews archive.
ASP.NET Core articles
Page 31 of 48
Newest first
-
A Comprehensive Guide to Development, Deployment, Security, and Best Practices
c-sharpcorner.com Issue #265
Building Robust APIs with the Microsoft Stack: A Comprehensive Guide to Development, Deployment, Security, and Best Practices.
-
Building Real-Time Web Applications with ASP.NET SignalR
medium.com Issue #265
Real-time web applications increase engagement by delivering instant data updates to users. ASP.NET SignalR is a powerful library that…
-
Building an Invoice Entry System with Angular, ASP.NET Core, Dapper, CQRS, and SQL Server
c-sharpcorner.com Issue #265
Learn how Vibe Coding revolutionizes retail merchandising by replacing static seasonal plans with AI-powered, multi-agent systems that detect trends, align inventory, adjust pricing, and personalize c...
-
.NET 10 Preview 7 is now available!
devblogs.microsoft.com Issue #265
Today, we are excited to announce the seventh preview release of .NET 10 with enhancements across the .NET Runtime, SDK, libraries, C#, ASP.NET Core, Blazor, .NET MAUI, and more. Check out the full re...
-
In any problem situation return ProblemDetails | IProblemDetailsService in ASP.NET Core
medium.com Issue #265
ProblemDetails is the standard way to indicate that your application has faced a problem. It can represent any type of issue — from…
-
Why Your C# Structs Might Be Slower Than Classes — Microsoft’s Own Performance Rules
blog.devgenius.io Issue #265
🧠 The Day Structs Slowed Our API Continue reading on Dev Genius »
-
Minimal APIs in .NET: The Beginner-Friendly Gateway I Wish I Found Sooner
medium.com Issue #264
When I first entered the .NET world, I was overwhelmed by the amount of boilerplate code I had to write just to display “Hello, World”…
-
The 2-Line Change That Made Our .NET App Pass the OWASP Top 10 Audit
medium.com Issue #264
We didn’t rewrite endpoints. We didn’t refactor middleware. Just two lines and one vault check saved our .NET app from a major security… Continue reading on .Net Programming »
-
Authentication and Authorization in ASP.NET Core: A Comprehensive Guide 2025
medium.com Issue #264
ASP.NET Core has come a long way in simplifying authentication and authorization. In 2025, with modern security demands, understanding…
-
Common errors to avoid in ASP.NET Core dependency injection
roundthecode.com Issue #263
Looking at how you can avoid common errors in ASP.NET Core dependency injection like not registering a service and circular dependency. The page Common errors to avoid in ASP.NET Core dependency injec...
-
ASP.NET Core Middleware: Use vs Map vs Run
medium.com Issue #263
What’s the Difference? Continue reading on .Net Programming »
-
⚙️ How to Apply Rate Limiting in ASP.NET Core (.NET 8) with a Custom Attribute
medium.com Issue #263
In modern web services, controlling traffic is essential to ensure fair usage and prevent abuse. In this article, I’ll walk you through a…
-
Rate Limiter in .NET 9
medium.com Issue #263
If you want the full source code, download it from this link: https://www.elitesolutions.shop/
-
Minimal APIs Cheatsheet (in ASP.NET Core)
c-sharpcorner.com Issue #262
Minimal APIs in .NET 6 simplify building lightweight web services with less code, ideal for microservices and prototypes. This guide explains setup, routing, DI, JSON handling, and best practices.
-
Building an ASP.NET GridView with DatePicker Filter and WebMethod Dropdown
c-sharpcorner.com Issue #262
Learn how to build a dynamic ASP.NET GridView with a DatePicker filter and a dropdown populated using WebMethod from SQL Server using C# and AJAX for real-time filtering.
-
Building Partial Page Updates in ASP.NET Using UpdatePanel — With and Without Master Pages
c-sharpcorner.com Issue #262
UpdatePanel offers an easy way to add AJAX-like behavior to your ASP.NET Web Forms without writing custom JavaScript. If you’re using Master Pages, just remember to centralize your ScriptManager and s...
-
Creating Smart Web Apps with Angular & C# (.NET Core) — Full Stack Development
msmcoretech.com Issue #262
In 2025, full-stack development primarily involves building cohesive, scalable, smart web platforms rather than just writing both…
-
Building an ASP.NET Web API Controller
c-sharpcorner.com Issue #261
This Web API project in ASP.NET handles financial chart data by processing multiple ISINs, validating client headers, executing SQL stored procedures, and returning structured JSON data for market ana...
-
Dynamic Service Registration in .NET: A Clean Approach to Dependency Injection
medium.com Issue #261
Dependency Injection (DI) is a fundamental part of modern .NET applications, but manually registering dozens or hundreds of services can…
-
How do I secure a .NET Web API (JWT, OAuth, Identity)?
c-sharpcorner.com Issue #261
Learn how to secure your .NET Web API using JWT, OAuth2, and ASP.NET Core Identity. Implement token-based authentication, role-based access control, and protect your endpoints with best practices.
-
Top 10 .NET Development Companies of 2025: How to Choose the Right Partner
belitsoft.com Issue #261
When you’re looking to hire a trusted .NET development partner, the “top 10” label usually indicates companies with deep expertise in…
-
Understanding MVC in .NET
medium.com Issue #261
I recently started working with ASP.NET and I kept hearing about “MVC” — the Model-View-Controller pattern. Everyone around me swore by it…
-
Performance Benchmarking: .NET 9 vs Previous Versions
medium.com Issue #261
If you want the full source code, download it from this link: https://www.elitesolutions.shop/
-
Mastering Unified API Responses in ASP.NET Core
medium.com Issue #260
How to Wrap Success, Errors, and Created Results Like a Pro
-
3 Ways to Create Middleware in ASP.NET Core (With Real Examples)
medium.com Issue #260
Hi, I’m Ali. I’ve been working as a software developer with .NET Core for about 3 years. One of the most important things I’ve learned is… Continue reading on DotnetAsync »