TECHNOLOGIES
NEWS
VIDEOS
FORUMS
Trainings
BOOKS
EVENTS
MORE
INTERVIEWS
JOBS
Live
LEARN
CAREER
MEMBERS
BLOGS
CHALLENGES
CERTIFICATIONS
Bounties
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
C# Corner
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Content
People
Search
Any Word
Exact Word
Content Filter
Articles
Videos
Blogs
Resources
News
Forums
Interviews
Complexity Level
Beginner
Intermediate
Advanced
Refine by Author
[Clear]
Sardar Mudassar Ali Khan (34)
Kripanshu Kumar(4)
Divyansh Gupta(4)
Dashrath Hapani(4)
Niharika Gupta(3)
Vaishali Vishwakarma(3)
Bhuvanesh Mohankumar(3)
Ziggy Rafiq(3)
Manoj Kalla(3)
Md Mominul Islam(2)
Mohammed Altaf(2)
John Godel(2)
Anup Hosur(2)
Satya Karki(2)
Kirtesh Shah(2)
Vishal Yelve(1)
Harshit Pandey(1)
Pasang Tamang(1)
Naga Santhosh Reddy Vootukuri(1)
Rinki (1)
Deepak Pippal(1)
Bharat Chaudhary(1)
Kiran Kumar(1)
Adriancs (1)
Anurag Chaudhary(1)
Raj Bhatt(1)
Atharva Urade(1)
Micheal Xavier A (1)
Velladurai (1)
Mahesh Chand(1)
Sarthak Varshney(1)
Nagi A(1)
Afsar Uddin(1)
Sagar Rane(1)
Sangeetha S(1)
Pravinkumar Birajdar(1)
Shafaet Hossain(1)
Ishika Tiwari(1)
Ayush Gupta(1)
Geo J Thachankary(1)
Praveen Raveendran Pillai(1)
Mayooran Navamany(1)
Latest First
Oldest First
Most Viewed
Sort By
Search Results
No search result found
Rate Limiting and Throttling in ASP.NET Core Web API
Sep 12, 2025.
This article explores implementing these crucial techniques using .NET 7's built-in middleware, custom solutions, and best practices. Learn to configure fixed window, token bucket, and sliding window limiters. Discover how to handle exceeded limits, implement per-user throttling, and ensure fair resource distribution for optimal API performance and reliability. Includes practical code examples and configuration tips.
Preventing CORS Misconfigurations in ASP.NET Core APIs
Sep 12, 2025.
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 vulnerabilities like data theft and CSRF. Discover best practices for configuring CORS correctly, including defining trusted origins, restricting methods and headers, and handling credentials safely.
Security Headers Every ASP.NET Core App Should Have
Sep 12, 2025.
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 code examples and best practices. Boost your app's security rating and safeguard user data with these easy-to-implement security measures, including middleware implementation and testing strategies.
What Are DTOs in ASP.NET Core and Their Benefits
Sep 12, 2025.
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 implement DTOs for cleaner, more maintainable, and robust ASP.NET Core applications. Discover practical examples and best practices for effective data handling.
HTML Tag Helpers vs. Tag Helpers in ASP.NET Core
Sep 11, 2025.
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 enhance Razor views with C# logic, improve SEO with clean URLs, and simplify model binding. Discover practical examples and benefits for cleaner, more maintainable ASP.NET Core web applications. Understand when and why to use each for optimal web development.
Clickjacking Protection with X-Frame-Options and CSP in ASP.NET Core
Sep 10, 2025.
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. Learn to prevent malicious embedding of your site in iframes, safeguarding users from unintended actions. Discover practical examples using middleware and the NWebsec library for easier, more secure implementation. Ensure compatibility across browsers and fortify your application's security posture.
Cross-Site Request Forgery (CSRF) Protection in ASP.NET Core
Sep 10, 2025.
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, AJAX, and Web APIs, ensuring your application is secure against unauthorized actions.
Preventing Session Hijacking and Cookie Theft in ASP.NET Core
Sep 09, 2025.
Protect your ASP.NET Core web applications from session hijacking and cookie theft! This guide covers essential security measures, including secure cookies (HttpOnly, SecurePolicy, SameSite), short session lifetimes, session ID regeneration, security stamp validation, and robust defenses against XSS and CSRF attacks. Implement MFA and monitor sessions to safeguard user data and prevent unauthorized access.
Serving Files Securely with Authorization in ASP.NET Core
Sep 09, 2025.
Securely serve files in ASP.NET Core by implementing authorization checks and preventing unauthorized access. Learn how to protect sensitive documents like invoices and reports by storing them outside the wwwroot folder and serving them through controller endpoints. This guide covers project setup, secure file controller creation, fine-grained authorization, and using IAuthorizationService for custom policies.
Securing APIs with JWT and OAuth2 in ASP.NET Core
Sep 09, 2025.
Learn how to secure your ASP.NET Core APIs using JWT (JSON Web Tokens) for authentication and OAuth2 for authorization. This guide covers implementation steps, including NuGet package installation, configuration in Program.cs, token generation, and securing API endpoints. Explore best practices like HTTPS, token expiration, and issuer validation to build robust and reliable APIs.
Model Binding and Model Validation in ASP.NET Core MVC?
Sep 09, 2025.
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 and custom validation logic streamline development, reduce boilerplate code, and enhance user experience. Master form handling and data validation in ASP.NET Core MVC.
Using ASP.NET Core Identity for Authentication Best Practices
Sep 09, 2025.
Master ASP.NET Core Identity for robust authentication! Learn to configure Identity, enforce strong password policies, implement Two-Factor Authentication (2FA), and use claims-based authorization. Secure your application with email confirmation, account lockout, and hardened cookie settings. Follow these best practices to build a secure, scalable, and maintainable ASP.NET Core application.
Multi-Factor Authentication (MFA) in ASP.NET Core Applications
Sep 09, 2025.
Enhance your ASP.NET Core application security with Multi-Factor Authentication (MFA). Learn how to implement MFA using ASP.NET Core Identity with authenticator apps, SMS, and email. This guide covers setup, code verification, and best practices like using TOTP over SMS, providing recovery codes, and securing token providers.
Implementing Role-Based Authorization in ASP.NET Core MVC
Sep 09, 2025.
Secure your ASP.NET Core MVC applications with role-based authorization! This guide provides a step-by-step walkthrough, complete with code examples, on implementing roles (Admin, Manager, User) using ASP.NET Core Identity. Learn to configure Identity, seed roles, assign roles to users, and restrict access at the controller, action, and view levels. Explore policy-based authorization for cleaner role management and best practices for robust security. Master role-based access control today!
Secure File Upload Handling in ASP.NET Core MVC
Sep 08, 2025.
Learn how to implement secure file upload handling in ASP.NET Core MVC applications. This article covers essential security best practices, including limiting file size, restricting file types, using safe filenames, and storing files outside the webroot to prevent direct access.
Preventing Path Traversal and Directory Browsing Attacks in ASP.NET Core
Sep 08, 2025.
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 Path.GetFileName, restricting upload directories, validating file types, and applying the principle of least privilege. Secure your web applications and prevent unauthorized access to sensitive files by implementing these essential security measures. Harden your web.config and monitor logs for suspicious activity.
Key Security Rules & Best Practices for ASP.NET Core Projects
Sep 05, 2025.
Enhance the security of your ASP.NET Core projects with these essential rules and best practices. Learn how to protect against common vulnerabilities like XSS, CSRF, and SQL injection. Implement robust authentication, secure cookie handling, and proper secret management. Keep your application safe by staying updated and applying the principle of least privilege.
How to Build Secure REST APIs with ASP.NET Core
Sep 04, 2025.
Secure your ASP.NET Core REST APIs with this comprehensive guide! Learn essential techniques for authentication using JWT, role-based authorization, and robust input validation. Protect against common threats like CSRF and DoS attacks with HTTPS, data encryption, and rate limiting. Implement logging, monitoring, and keep dependencies updated for continuous security. Build resilient APIs and safeguard your applications!
Complete End-to-End Guide: HTTPS, HSTS, and TLS in ASP.NET Core
Sep 04, 2025.
Comprehensive guide to securing ASP.NET Core applications with HTTPS, HSTS, and TLS. Learn step-by-step how to enforce encrypted communication, prevent downgrade attacks, and configure secure protocols from development to production. Includes TLS configuration in Kestrel, secure cookies, production certificate management, and CI/CD deployment considerations.
Preventing Mass Assignment & Overposting in ASP.NET Core Web API
Sep 04, 2025.
Prevent mass assignment and overposting vulnerabilities in ASP.NET Core Web APIs. Learn how attackers can exploit direct model binding to modify sensitive properties like 'IsAdmin'. Discover secure coding practices using DTOs, explicit property mapping, and whitelisting techniques. Protect your API by controlling data input, auditing sensitive fields, and implementing role-based authorization to ensure data integrity and prevent unauthorized access. Bind only what you trust!
Secure Coding Guidelines for ASP.NET Core MVC & Web API
Sep 04, 2025.
Fortify your ASP.NET Core MVC & Web API applications with these essential secure coding guidelines. Learn practical techniques to prevent common vulnerabilities like XSS, CSRF, and SQL injection. Implement robust authentication, input validation, and API security measures. Protect sensitive data, manage dependencies securely, and enhance performance to defend against DoS attacks. Build resilient and secure applications today!
Protecting Against JSON Injection and Malformed Payloads in ASP.NET Core
Sep 04, 2025.
Protect your ASP.NET Core APIs from JSON injection and malformed payloads! This guide details how to prevent attacks like privilege escalation, DoS, and XSS. Learn to use DTOs, strict validation, request limits, and content-type enforcement. Secure your application by implementing these best practices for robust JSON parsing and handling, ensuring data integrity and application stability against malicious input.
Input Validation and Sanitization in ASP.NET Core – End-to-End Example
Sep 04, 2025.
Secure your ASP.NET Core applications! This guide provides an end-to-end example of input validation and sanitization, crucial for preventing XSS, SQL injection, and other attacks. Learn how to use DTOs, HtmlSanitizer, and middleware to protect your application from malicious user input. Implement best practices like CSRF protection and password hashing for robust security. Build resilient and safe web applications with this comprehensive tutorial.
File and Input Security in ASP.NET Core MVC and Web API Applications Introduction
Sep 02, 2025.
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 injection, XSS, path traversal, malware uploads, and DoS attacks through robust validation, secure file handling, and API security measures.
Partial View vs ViewComponent in ASP.NET MVC/Core – A Complete Guide
Sep 02, 2025.
Unlock the secrets of Partial Views and ViewComponents in ASP.NET MVC/Core! This guide dives deep into their differences, exploring usage, performance, and best-use cases. Learn when to use each for optimal code reusability and maintainability. Discover how Partial Views excel at static content while ViewComponents shine with dynamic, data-driven widgets. Elevate your ASP.NET development skills today!
Preventing SQL Injection in ASP.NET MVC, ASP.NET Core MVC, and Web API Applications
Aug 29, 2025.
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 robust security. Master best practices for a secure application!
Application Security Against DoS and DDoS Attacks in ASP.NET Core Web API Introduction
Aug 29, 2025.
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.
Data Security in ASP.NET Core MVC Applications
Aug 28, 2025.
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 applications.
Credential Security in ASP.NET Core Web API: Best Practices and Implementation
Aug 27, 2025.
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.
Securing ASP.NET Core Web APIs with JWT Authentication
Aug 27, 2025.
Secure your ASP.NET Core Web APIs with JWT authentication! This guide covers implementation, role-based authorization, and OWASP API Top 10 threat mitigation.
Application Security in ASP.NET Core Web API – Best Practices & Implementation
Aug 27, 2025.
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 for robust protection.
PDF Generation in ASP.NET Core MVC using Puppeteer Sharp
Aug 20, 2025.
Puppeteer Sharp enables .NET apps to generate browser-quality PDFs from HTML, supporting modern CSS, JavaScript, and dynamic content. Automate the creation of PDFs for invoices, tickets, or web pages with ease and accuracy.
Creating Minimal API's quickly with ASP.NET Core
Aug 19, 2025.
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.
Enterprise ASP.NET Core Web API with Clean Architecture
Aug 14, 2025.
Learn to build scalable, maintainable Enterprise ASP.NET Core Web APIs using Clean Architecture principles, focusing on separation of concerns, testability, and modular design for high-performance enterprise-grade applications.
Building an Invoice Entry System with Angular, ASP.NET Core, Dapper, CQRS, and SQL Server
Aug 12, 2025.
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 catalogs in real time.
Minimal APIs Cheatsheet (in ASP.NET Core)
Aug 05, 2025.
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.
Secure ASP.NET Core Web API Endpoints with JWT
Aug 01, 2025.
Learn to secure your .NET Core Web API with JWT authentication, role-based authorization, and protected endpoints. Includes user login/registration, token generation, and testing with Postman or Swagger.
Best Practices for Exception Handling in ASP.NET Core Web APIs
Aug 01, 2025.
Exception handling is a critical aspect of building robust, secure, and maintainable Web APIs. In ASP.NET Core, handling exceptions gracefully ensures that the API provides meaningful error information to consumers without exposing sensitive internal details or causing the application to crash.
Mastering ASP.NET Core: Key Features and Practical Code Examples
Jul 31, 2025.
Discover ASP.NET Core’s top features like Middleware, Dependency Injection, Minimal APIs, JWT Authentication, and more with real-world examples to build secure, scalable, and high-performance web apps.
Inclusive Guide to Key Concepts in ASP.NET MVC Framework
Jul 31, 2025.
This comprehensive article covers essential ASP.NET MVC concepts—from routing and controllers to Razor views, validation, filters, and deployment—offering best practices and examples to build secure, maintainable web applications efficiently.
🧾 Creating Custom Middleware in ASP.NET Core – The Complete Guide with Real Examples
Jul 29, 2025.
ASP.NET Core is known for its modular pipeline, where middleware components play a critical role in handling HTTP requests and responses. Middleware can perform a variety of tasks such as request logging, authentication, routing, response modification, error handling, and more.
Advanced Swagger Use Cases in ASP.NET Core (.NET 6/7/8)
Jul 28, 2025.
Take your API documentation to the next level with advanced Swagger use cases in ASP.NET Core. In this article, I cover grouping endpoints, API versioning, JWT authentication, hiding routes, UI customization, and more — all using Swashbuckle in .NET 6/7/8.
Mastering Swagger in ASP.NET Core (.NET 6/7/8)
Jul 28, 2025.
Learn how to integrate and customize Swagger in your ASP.NET Core (.NET 6/7/8) API project using Swashbuckle. This guide covers setup, best practices, and practical tips to create clean, interactive API documentation.
CRUD (Create, Read, Update, Delete) with Fetch API in Vanilla ASP.NET Web Forms (Vanilla Web Forms)
Jul 28, 2025.
Building a Web Forms Page with CRUD (Select, Insert, Update, Delete) Operations without Server Control and Postback
Understanding the MVC Application Life Cycle in ASP.NET Core (.NET 6/7/8)
Jul 28, 2025.
With the evolution of .NET into .NET Core and now .NET 6, 7, and 8, the MVC framework has seen major architectural improvements. Understanding the ASP.NET Core MVC application life cycle is crucial for developers building modern, scalable, and high-performance web applications.
🔥 How to Consume Web API in ASP.NET MVC Using HttpClient
Jul 24, 2025.
Are you building an ASP.NET MVC application and need to fetch data from a Web API? Look no further!In this guide, you’ll learn how to consume Web API using the HttpClient class in ASP.NET MVC with real examples and best practices.
Entity Framework Core in ASP.NET Core
Jul 22, 2025.
Learn how to set up Entity Framework Core in an ASP.NET Core MVC project, perform basic CRUD operations, configure DbContext, manage migrations, and follow best practices for scalable and maintainable development.
CRUD Operations in ASP.NET Core with Entity Framework – Real-World Example
Jul 22, 2025.
Got it! Let’s create a real-time CRUD REST API example for a Customer Service system using ASP.NET Core + Entity Framework Core.
Building Modern Web Applications with ASP.NET Core
Jul 21, 2025.
ASP.NET Core is a cross-platform, high-performance framework for building modern web apps. It offers modular design, cloud readiness, and support for Razor Pages, APIs, middleware, and modern front-end integration.
Integrating React with ASP.NET Core 8 in Visual Studio 2022
Jul 21, 2025.
Build a full-stack app by combining React (via Vite) with ASP.NET Core 8 Web API. Use Visual Studio 2022 for seamless development, CORS for connectivity, and fetch data from a .NET backend using RESTful endpoints.
Managing Relationships, Migrations, and Performance Optimization in ASP.NET Core MVC
Jul 18, 2025.
This ASP.NET Core MVC project demonstrates how to manage one-to-many relationships using Entity Framework Core, handle code-first migrations, and apply performance optimization techniques such as AsNoTracking, pagination, and in-memory caching.
Mastering Middleware in ASP.NET Core: The Complete Guide to Request Pipeline
Jul 18, 2025.
Master middleware in ASP.NET Core by learning its role in request processing, lifecycle stages, built-in components, and custom implementations—plus interview tips to ace technical discussions confidently.
Implementing JWT Authentication with Redis Cache in ASP.NET Core Web API
Jul 05, 2025.
This article demonstrates how to implement JWT authentication in an ASP.NET Core Web API using Redis cache for efficient token management. By generating access and refresh tokens during login and storing them in Redis, the API achieves faster token validation, improved scalability, and automatic expiration handling.
JWT Auth in ASP.NET MVC: Secure REST API with C#.NET
Jul 04, 2025.
Learn how to build a secure ASP.NET Web API using C# and JWT authentication. This hands-on guide covers token generation, validation, and securing endpoints to protect your API with modern practices.
Basic Auth in ASP.NET MVC Web API Using C#.NET
Jul 03, 2025.
Learn how to build a secure ASP.NET Web API using Basic Authentication in C#. Protect your student data endpoints by validating user credentials with a custom auth filter. Perfect hands-on project for beginners.
Build a RESTful Student Info API with ASP.NET MVC & C#.NET
Jul 02, 2025.
Learn how to build a simple RESTful API using ASP.NET MVC in C#. This beginner-friendly tutorial guides you through creating a student info API with models, controllers, routing, and JSON output step by step.
Mastering Connection Pooling with Dapper in ASP.NET Core Web API
Jun 27, 2025.
In modern web development, one of the key challenges when working with databases is efficiently managing database connections.
Service Lifetimes in ASP.NET Core: Transient vs Scoped vs Singleton
Jun 25, 2025.
Learn the differences between Transient, Scoped, and Singleton service lifetimes in ASP.NET Core with real-world examples
How to use Ngrok in ASP.NET Core
Jun 18, 2025.
When building modern web applications, developers often face a common challenge: testing locally developed webhooks, APIs, or third-party integrations that require a publicly accessible URL.
Vehicle Count Visualization Using ApexCharts in ASP.NET MVC
Jun 10, 2025.
In this snippet, we are working on visualizing vehicle category counts (B and C) using a donut chart powered by ApexCharts.
Multi-Tenant SaaS Applications in ASP.NET Core
Jun 10, 2025.
As Software-as-a-Service (SaaS) continues to dominate the tech landscape, building applications that serve multiple customers (tenants) efficiently from a single codebase becomes essential.
Building Background Tasks in ASP.NET Core
Jun 09, 2025.
In modern ASP.NET Core applications, especially those involving microservices, background processing is a key requirement. Whether it’s sending emails, processing Kafka messages, running cron-like jobs, or handling long-running workflows, background services are essential.
Testing with Moq for Clean and Reliable Code in ASP.NET Core with C# 13 and xUnit
Jun 08, 2025.
With this tutorial, you will learn how to use C# 13, xUnit, and Moq to test your APIs in ASP.NET Core using best practices. The guide was written by Ziggy Rafiq.
Best Practices for Structuring Large ASP.NET Projects: A Simple Guide
Jun 07, 2025.
A beginner-friendly guide to organizing large ASP.NET projects using clean architecture, feature-based folders, and practical tips for maintainability and scalability.
Building a Clean ASP.NET Core API with C# 13, EF Core, and DDD
Jun 02, 2025.
The guide is written by Ziggy Rafiq and follows real-world architecture and testing best practices to provide a clean, scalable REST API using ASP.NET Core, C# 13, EF Core, and MS SQL.
Logging in ASP.NET Core Web API Using MongoDB
Jun 03, 2025.
Logging is one of the most important parts of building a real-world application. It helps you track errors, monitor behavior, and understand what your app is doing behind the scenes.
Improved CRUD operations for GridView with Redshift in ASP.NET Core MVC (Utilizing C# 14 Features)
May 08, 2025.
Learn how to enable CRUD operations in an ASP.NET Core MVC application using Amazon Redshift and C# 14 features. This guide covers setup, connection, SQL commands, data manipulation, security, and best practices.
Building a User Subscription Module in ASP.NET MVC with C# 14
Apr 25, 2025.
Learn how to build a complete User Subscription Module in ASP.NET MVC using C# 14 features, with registration, plans, payment logic, and access control for scalable, modern subscription-based web apps.
Observability in ASP.NET Core with OpenTelemetry & Azure Monitor
Apr 16, 2025.
Learn how to implement OpenTelemetry in ASP.NET Core for robust observability using metrics, logs, and traces—integrated with Azure Monitor for real-time insights, alerts, dashboards, and advanced telemetry patterns.
How to Publish ASP.NET Core MVC Project.NET 8 with View Files
Apr 14, 2025.
ASP.NET Core MVC .NET 8 publish cshtml file, publish view in asp.net core mvc, publishing CSHTML file in .NET 8 MVC project.
Docker Deployment for ASP.NET Core API & Blazor Apps
Apr 10, 2025.
Learn to Dockerize ASP.NET Core APIs and Blazor apps with real-world examples, Compose setups, and pro tips to avoid pitfalls.
Mastering Eager Loading in ASP.NET Core Web API
Mar 31, 2025.
Eager Loading in ASP.NET Core Web API is a technique using Entity Framework Core to load related data (like child entities) alongside the main entity in a single query. It helps improve performance by reducing database round-trip use.Include() and .ThenInclude(). Ideal for situations where related data is always needed.
Deploying ASP.NET Core Apps To Azure Kubernetes Service
Mar 28, 2025.
Deploying ASP.NET Core apps to Azure Kubernetes Service (AKS) enables scalable, containerized applications in the cloud.
Advanced APIs with ASP.NET Core: Middleware, EF Core, and Versioning
Mar 28, 2025.
Learn how to build advanced APIs with ASP.NET Core using middleware, Entity Framework Core (EF Core), and API versioning. This guide covers request handling, database management with EF Core, and implementing versioning strategies for scalable and maintainable APIs.
Implement idempotent APIs in ASP.NET Core
Mar 27, 2025.
Idempotent APIs ensure repeated requests yield the same outcome, preventing duplicate operations. This article explores idempotency in HTTP methods, real-world examples, and implementation techniques for robust and reliable web services.
Lazy Loading in ASP.NET Core Web API
Mar 26, 2025.
Learn how to implement Lazy Loading in ASP.NET Core Web API using Entity Framework Core. This complete guide covers configuration, models, DTOs, controllers, and best practices with a working example.
Explicit Loading in ASP.NET Core Web API
Mar 18, 2025.
Explicit Loading in ASP.NET Core Web API is a technique used to manually retrieve related data from the database when needed, using LoadAsync() on navigation properties. Unlike eager loading (Include()) or lazy loading, explicit loading provides better control over database queries, improving performance and efficiency. It is useful when related data is conditionally required.
Protecting Sensitive Data in ASP.NET Core 9 with Azure Key Vault
Mar 10, 2025.
This article describes what is Azure key vault and manage the secrets using it. Additionally, it demonstrates how to implement it in ASP.NET Core 9 application.
Working with Dataset Data in ASP.NET GridView
Mar 08, 2025.
This article covers data binding, displaying records, sorting, paging, and editing in GridView. Understand how to fetch data from a database, manipulate it using DataTables, and present it efficiently using ASP.NET GridView for a seamless user experience.
Data Consistency in ASP.NET Core Microservices with Locks
Feb 24, 2025.
This article explores how to use distributed locks to manage concurrent operations, prevent race conditions, and maintain data integrity across microservices efficiently.
Scheduling Background Jobs in ASP.NET Core Using Quartz.NET
Feb 22, 2025.
Quartz.NET is a powerful and flexible job scheduling library that seamlessly integrates with ASP.NET Core. It enables developers to automate background tasks, schedule recurring jobs, and manage workflows efficiently. This article explains what is Quartz.NET and how to impkemnt it to schedule a background job.
10 Essential Development Tips for ASP.NET Core
Feb 17, 2025.
Discover 10 essential development tips for ASP.NET Core that will help you build efficient, scalable, and maintainable web applications.
Building RESTful APIs with ASP.NET Core: Best Practices
Feb 14, 2025.
This article covers the best practices for API design, security, performance optimization, and error handling to help you create robust web services. Perfect for developers looking to master API development in .NET Core.
Security Best Practices in ASP.NET Core
Feb 14, 2025.
Secure your ASP.NET Core app with HTTPS, JWT, OAuth2, and API keys. Prevent SQL injection, XSS, and CSRF attacks. Use encryption, logging, monitoring, and secure file uploads. Keep dependencies updated for continuous security.
Integrating Stripe Payment Gateway in ASP.NET Core MVC
Feb 03, 2025.
Learn how to integrate Stripe Payment Gateway into an ASP.NET Core MVC application, enabling secure online payments with Stripe Checkout. The solution covers API setup, payment session creation, and handling successful or canceled payments.
Blazor vs Traditional ASP.NET (MVC/WebForms): A Comparison
Feb 03, 2025.
Blazor is a web framework by Microsoft that enables building interactive web apps using C# and .NET. It supports Blazor Server (server-side) and Blazor WebAssembly (client-side) for modern, real-time, and offline web development.
ASP.NET MVC: Download Large File Efficiently
Feb 02, 2025.
This article explores efficient ways to handle large file downloads in ASP.NET MVC, covering FileStreamResult, chunked streaming, async streaming, IIS configuration, and Content-Disposition for improved performance and browser compatibility.
Dynamic Menus in Layout Page Using Sessions in ASP.NET Core 6
Jan 31, 2025.
Store dynamic menu data in session and display it across multiple pages using the layout page in ASP.NET Core 6.
Design Patterns for Scalable ASP.NET MVC Applications
Jan 31, 2025.
Discover key design patterns like Repository, Unit of Work, Dependency Injection, Factory, Singleton, and Command to enhance the scalability, maintainability, and testability of your ASP.NET MVC applications.
Compare ASP.NET SOAP Services vs Core APIs with Code
Jan 27, 2025.
Discover the key differences between ASP.NET SOAP Web Services (ASMX) and ASP.NET Core SOAP APIs in this detailed guide by Ziggy Rafiq. Get code examples, best practices, and insights for both modern and legacy systems.
Building a Real-Time Chat Application with ASP.NET Core and WebSockets
Jan 26, 2025.
This article covers setting up WebSocket connections, handling bi-directional communication, and implementing live messaging. Perfect for developers looking to enhance their skills in real-time app development.
Global Exception Handling in ASP.NET Core Web API
Jan 14, 2025.
Learn how to implement Global Exception Handling in Asp.Net Core WebAPI using Custom Middleware. Handle errors efficiently with ExceptionMiddleware, register it in program.cs, and see how to manage exceptions in your application seamlessly.
Basic Authentication in Asp.NET Core Web API
Jan 11, 2025.
This article explains implementing Basic Authentication in ASP.NET Core WebAPI using .NET Core 8. It covers authentication concepts, step-by-step implementation, and demonstrates a practical example with code and diagrams.
Optimize Relationships Migrations Performance in ASP.NET Core MVC
Jan 06, 2025.
This article covers Entity Framework Core, query optimization, caching strategies, lazy and eager loading, and best practices to enhance your MVC application's efficiency.
API Versioning In ASP.NET Core
Jan 06, 2025.
This article covers versioning strategies, best practices, and configuration methods, ensuring backward compatibility and smooth upgrades for your RESTful APIs. Perfect for developers of all levels.
Implementing Localization in ASP.NET Core Web API
Dec 16, 2024.
Learn How to implement localization in ASP.NET Core Web API enables developers to create multilingual applications by supporting various languages and cultures.
Connection String in ASP.NET Core MVC .NET 8
Dec 13, 2024.
Learn how to manage and use connection strings in applications, explore AppSettings.json, environment variables, and static classes, and understand their implementation with sample code for seamless database connectivity.
Introduction To Minimal API in ASP.NET Core
Dec 12, 2024.
Minimal APIs in ASP.NET Core are a streamlined approach to building web APIs designed to be lean and efficient. ASP.NET Core Minimal APIs simplify web API development with concise syntax, reduced boilerplate, and flexibility. Features include lambda-based routing, HTTP handling, and route grouping for efficient organization.
Session in ASP.NET Core MVC .NET 8
Dec 10, 2024.
This article covers enabling sessions in .NET 8 ASP.NET Core MVC, storing/retrieving session values, managing session keys, and implementing session handling with step-by-step examples and code walkthroughs.
CRUD Operations with ASP.NET Core API and EF Core
Nov 29, 2024.
This article provides step-by-step instructions for building a RESTful API, integrating EF Core for database management, and performing essential data operations seamlessly.
1
-
100
of
4705
<<
1
2
3
4
5
>>
Search
OUR TRAINING
Discovery to Delivery
Employing the latest technologies, Over-C's capabilities include web and mobile development, software and database architecting as well as visual and UX design.