frameworks
ASP.NET Core Articles, Tutorials & News
ASP.NET Core articles, tutorials, and news from the DotNetNews archive.
1196 articles Updated Page 27 of 48
Browse additional ASP.NET Core articles from the DotNetNews archive.
ASP.NET Core articles
Page 27 of 48
Newest first
-
How To Add Fault Handling In .NET With Polly
medium.com Issue #289
Building resilient ASP.NET Core applications requires proper fault handling for transient failures, network issues, and downstream service…
-
Untangling Your Code: A Beginner’s Guide to MVC in .NET
medium.com Issue #289
Structuring Your Applications for Clarity, Maintainability, and Scale
-
Build Master-Detail Pages in ASP.NET Core MVC — Part 4
bipinjoshi.net Issue #289
In Part 2 and Part 3 of this series, we completed the implementation of the TeamsController and TeamMembersController, respectively. So far, each controller action has returned the Main view, supplyin...
-
ASP.NET Core - How to Use appsettings.json and IConfiguration
c-sharpcorner.com Issue #288
This article simplifies using appsettings.json and IConfiguration to manage application settings like database connections, API keys, and logging levels. Learn how to access settings, leverage strongl...
-
Health Checks in ASP.NET Core: Building Reliable Endpoint Monitoring
medium.com Issue #288
Introduction to Health Checks in ASP.NET Core — Why monitoring endpoints matters for modern APIs.
-
Preventing Path Traversal and Directory Browsing Attacks in ASP.NET Core
c-sharpcorner.com Issue #288
Protect your ASP.NET Core applications from path traversal and directory browsing attacks! Learn practical mitigation strategies, including disabling directory browsing, sanitizing file paths with Pat...
-
Model Binding and Model Validation in ASP.NET Core MVC?
c-sharpcorner.com Issue #288
Unlock the power of ASP.NET Core MVC with Model Binding and Model Validation! Learn how to automatically map HTTP request data to your models and ensure data integrity. Discover how data annotations a...
-
Dependency Injection in .NET: The Career-Level Deep Dive That Will Make You Nail Any Interview
blog.stackademic.com Issue #287
There’s one interview question that keeps haunting .NET developers: Continue reading on Stackademic »
-
Full Stack .NET + Angular Interview Mastery Guide — 2025 Edition
blog.yaseerarafat.com Issue #287
Landing a developer job in 2025 isn’t about memorizing syntax anymore. Interviewers want engineers who can design scalable systems, code…
-
What Are DTOs in ASP.NET Core and Their Benefits
c-sharpcorner.com Issue #287
This article explains how DTOs enhance security by preventing sensitive data exposure, improve performance through optimized data transfer, and decouple your API from database models. Learn to impleme...
-
Top 12 Essential C# Code Snippets for ASP.NET and .NET Developers (Ultimate Guide
shahedbd.medium.com Issue #287
Reusable code snippets are the backbone of efficient programming. For ASP.NET, .NET, and C# developers, having a toolkit of time-saving…
-
HTML Tag Helpers vs. Tag Helpers in ASP.NET Core
c-sharpcorner.com Issue #287
Confused about HTML Tag Helpers vs. ASP.NET Core Tag Helpers? This article clarifies the differences between standard HTML elements and ASP.NET Core's server-side helpers. Learn how Tag Helpers enhanc...
-
Security Headers Every ASP.NET Core App Should Have
c-sharpcorner.com Issue #287
This article provides a comprehensive guide to protecting against XSS, clickjacking, and other common web vulnerabilities. Learn how to implement HSTS, CSP, X-Frame-Options, and more with practical co...
-
Implementing API Versioning in ASP.NET Core
medium.com Issue #286
Practical API versioning for Minimal APIs and MVC.
-
AspGoat: The First Intentionally Vulnerable modern ASP.NET Core App for OWASP Top 10
infosecwriteups.com Issue #286
Most intentionally vulnerable applications we know and use for training like DVWA, Juice Shop, and WebGoat are written in PHP , Node.JS… Continue reading on InfoSec Write-ups »
-
Serverless with Azure Functions in .NET
malshikay.medium.com Issue #286
Serverless made simple for .NET developers
-
From JSON files to Strongly Typed objects in ASP.NET Core
medium.com Issue #286
In this article, we’ll explore JSON file configuration in ASP.NET Core, demonstrating how to add custom JSON files, access their values…
-
Graceful Error Handling in ASP.NET Core APIs
medium.com Issue #285
How to Build Robust APIs with Centralized Error Handling in ASP.NET Core.
-
Clickjacking Protection with X-Frame-Options and CSP in ASP.NET Core
c-sharpcorner.com Issue #285
Protect your ASP.NET Core applications from clickjacking attacks! This guide explains how to implement robust defenses using X-Frame-Options and Content Security Policy (CSP) with frame-ancestors. Lea...
-
Using a cache in a clean way in ASP.NET Core
medium.com Issue #284
Inject a cache directly in the controller where you need to use it — it’s not the good approach to implement caching in your app.
-
Preventing CORS Misconfigurations in ASP.NET Core APIs
c-sharpcorner.com Issue #284
Secure your ASP.NET Core APIs! This article dives into preventing CORS misconfigurations, a critical aspect of web application security. Learn how overly permissive CORS settings can lead to vulnerabi...
-
Cross-Site Request Forgery (CSRF) Protection in ASP.NET Core
c-sharpcorner.com Issue #284
This article details built-in mechanisms like anti-forgery tokens, SameSite cookies, and global validation to safeguard authenticated users. Learn how to implement CSRF protection in Razor Pages, MVC,...
-
File and Input Security in ASP.NET Core MVC and Web API Applications Introduction
c-sharpcorner.com Issue #283
Protect your ASP.NET Core MVC and Web API applications from critical vulnerabilities! This article provides essential best practices for securing file uploads and user inputs. Learn how to prevent SQL...
-
Mastering the Blazor Lifecycle: When to Use Each Method (Without Losing Your Sanity)
medium.com Issue #283
I still remember the first time I messed with Blazor’s lifecycle methods — I threw all my data fetching into OnInitializedAsync, hit F5… Continue reading on Stackademic »
-