frameworks
ASP.NET Core Articles, Tutorials & News
ASP.NET Core articles, tutorials, and news from the DotNetNews archive.
1196 articles Updated Page 29 of 48
Browse additional ASP.NET Core articles from the DotNetNews archive.
ASP.NET Core articles
Page 29 of 48
Newest first
-
ASP.NET Core Development with XoomCoreWeb Boilerplate
c-sharpcorner.com Issue #277
XoomCoreWeb is an open-source ASP.NET Core boilerplate with Onion Architecture, role-based access control, EF Core, Serilog logging, and audit trails. Available on GitHub and Visual Studio Marketplace...
-
Your .NET App Will Be an AI Agent (Whether You Like It or Not)
medium.com Issue #277
Why This Blog Matters Continue reading on Dev Genius »
-
Application Security in ASP.NET Core Web API – Best Practices & Implementation
c-sharpcorner.com Issue #277
Secure your ASP.NET Core Web API with HTTPS, JWT authentication, role-based access, input validation, rate limiting, CORS, secure secrets, security headers, logging, and regular penetration testing fo...
-
Preventing SQL Injection in ASP.NET MVC, ASP.NET Core MVC, and Web API Applications
c-sharpcorner.com Issue #277
Protect your ASP.NET MVC, ASP.NET Core, and Web API apps from SQL Injection! Learn practical C# strategies, parameterized queries, and secure coding practices to prevent data breaches and ensure robus...
-
Application Security Best Practices for Developers in C# Applications
c-sharpcorner.com Issue #276
Enhance C# application security! Learn best practices for authentication, authorization, data protection, and more. Secure your ASP.NET Core apps now!
-
Elegant Global Error Handling Using Middleware In .NET 9
medium.com Issue #276
Global error handling is crucial for production-ready .NET applications, providing consistent, clean responses while preventing sensitive…
-
Single-Page Applications (SPAs) in Web Development
c-sharpcorner.com Issue #276
Single-page applications (SPAs) deliver faster, dynamic, app-like web experiences by loading content without requiring page refreshes. Built with frameworks like React, Angular, or Vue, they enhance p...
-
JWT Security Patterns Every Senior ASP.NET Core Developer Should Know
medium.com Issue #276
Why default JWT authentication breaks under scale — and how to secure ASP.NET Core with battle-tested patterns
-
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 »