ASP.NET Core Articles, Tutorials & News
ASP.NET Core articles, tutorials, and news from the DotNetNews archive.
1213 articles Updated Page 30 of 49
ASP.NET Core articles, tutorials, and news from the DotNetNews archive.
ASP.NET Core articles
Page 30 of 49
Newest first
-
Application Security Against DoS and DDoS Attacks in ASP.NET Core Web API Introduction
c-sharpcorner.com Issue #275
Protect your ASP.NET Core Web API from DoS and DDoS attacks! Learn practical techniques like rate limiting, IP filtering, caching, and WAF deployment for robust security.
-
Tight Coupling in ASP.NET Core: How to Identify, Refactor, and Improve Code Flexibility
malshikay.medium.com Issue #275
Identify tight coupling in ASP.NET Core and refactor with Dependency Injection for cleaner, testable code
-
Credential Security in ASP.NET Core Web API: Best Practices and Implementation
c-sharpcorner.com Issue #274
Learn how to secure credentials in ASP.NET Core Web API using best practices such as secret management, authentication, HTTPS, and Azure Key Vault to protect sensitive data and prevent leaks.
-
Data Security in ASP.NET Core MVC Applications
c-sharpcorner.com Issue #274
Learn essential ASP.NET Core MVC data security practices, including HTTPS enforcement and authentication, encryption, XSS/CSRF prevention, and secure storage, to ensure safe and reliable web applicati...
-
ASP.NET Core in .NET 9 Middleware Order: The Setup That Actually Works
medium.com Issue #274
Master built-in rate limiting, output caching, and route groups in .NET 9 with the pipeline order that actually works
-
Securing ASP.NET Core Web APIs with JWT Authentication
c-sharpcorner.com Issue #274
Secure your ASP.NET Core Web APIs with JWT authentication! This guide covers implementation, role-based authorization, and OWASP API Top 10 threat mitigation.
-
Global Exception Handling in ASP.NET Core: From Throw to ProblemDetails
medium.com Issue #273
Centralized error handling with ProblemDetails in ASP.NET Core
-
Rate Limiting in ASP.NET Core — Protect Your APIs Like a Pro
medium.com Issue #273
Learn how to implement rate limiting in ASP.NET Core to protect your APIs from abuse, DDoS attacks, and excessive usage. Includes native…
-
Webhooks in .NET 9
medium.com Issue #273
Webhooks are essential for modern applications, enabling real-time event-driven communication between services. This comprehensive guide…
-
Reset Cookies and force new sign-in using ASP.NET Core Identity
damienbod.com Issue #272
This post looks at implementing a cookie reset in an ASP.NET Core application using Duende identity server which federates to Entra ID. Sometimes cookies need to be reset for end users due to size pro...
-
Essential Patterns for Modern ASP.NET Development : A Practical Deep Dive
blog.yaseerarafat.com Issue #272
ASP.NET Core has come a long way. From the days of tightly coupled controllers, scattered business logic, and painful testing setups, we…
-
Creating Minimal API's quickly with ASP.NET Core
c-sharpcorner.com Issue #272
In this comprehensive article, we'll explore how to leverage ASP.NET Core to develop minimal APIs rapidly, covering key concepts, best practices, and practical examples.
-
What is the purpose of Startup.cs?
medium.com Issue #271
In ASP.NET Core applications, the Startup.cs file plays a central role in configuring how the application behaves at runtime. Its primary…
-
Build Master-Detail Pages in ASP.NET Core MVC — Part 2
bipinjoshi.net Issue #271
In the previous part of this article series, we introduced the sample application and built the EF Core model, which includes the Team, TeamMember, and AppDbContext classes. In this installment, we'll...
-
The Overlooked Importance of CancellationToken in .NET APIs
medium.com Issue #271
Why respecting (and sometimes ignoring) CancellationToken is critical for building efficient, reliable, and consistent .NET APIs.
-
Building a Fast .NET Core API with Async Programming
medium.com Issue #270
Every request to an API starts on a thread from the CLR’s pool. With synchronous execution, that thread stays blocked until completion…
-
.NET 10 Blazor Hybrid & Angular/React Hybrid Architecture
javascript.plainenglish.io Issue #270
.NET 10 Harnessing the Best of Both Worlds Continue reading on JavaScript in Plain English »
-
FastEndpoints for Senior .NET Developers: Advanced Validation, DI, and Middleware Techniques
blog.stackademic.com Issue #269
Why FastEndpoints Matters for Senior Developers Continue reading on Stackademic »
-
Building a High-Performance API with .NET and PostgreSQL
medium.com Issue #269
When I started building APIs, I thought: “If it works, it’s good.” Then came my first production issue: API calls that took forever. I…
-
How to use parameter binding for routes in Minimal APIs
roundthecode.com Issue #269
Learn how to use parameter binding in minimal API routes with wildcards and constraints as well as using them in an endpoint handler alongside special types. The page How to use parameter binding for ...
-
.NET 9 — Aspire vs Ocelot vs YARP
martinhosebastiao.medium.com Issue #268
Essas três tecnologias são muito semelhantes e estão em alta no mercado, hoje vamos presentar as finalidades e diferenças de cada um.
-
Understanding Controller Return Types in ASP.NET Core: IActionResult vs ActionResult vs T
medium.com Issue #268
When I started building Web APIs in ASP.NET Core, my controller methods “worked” — until they didn’t.
-
How To Build a Load Balancer In .NET With YARP Reverse Proxy
medium.com Issue #268
If you want the full source code, download it from this link: https://www.elitesolutions.shop/
-
-
Advanced .NET Disposal Patterns Every Senior Dev Should Know
medium.com Issue #268
Avoid deadlocks, leaks, and subtle bugs by mastering the synchronization and asynchronous cleanup techniques. Continue reading on Stackademic »