C# Corner
Tech
News
Videos
Forums
Trainings
Books
Events
More
Interviews
Jobs
Live
Learn
Career
Members
Blogs
Challenges
Certifications
Bounties
Contribute
Article
Blog
Video
Ebook
Interview Question
Collapse
Feed
Dashboard
Wallet
Learn
Achievements
Network
Refer
Rewards
SharpGPT
Premium
Contribute
Article
Blog
Video
Ebook
Interview Question
Register
Login
Tags
No tag found
Content Filter
Articles
Videos
Blogs
Resources
News
Forums
Interviews
Complexity Level
Beginner
Intermediate
Advanced
Refine by Author
[Clear]
Sardar Mudassar Ali Khan (14)
John Godel(7)
Dashrath Hapani(4)
Bhuvanesh Mohankumar(3)
Velladurai (3)
Manoj Kalla(3)
Micheal Xavier A (2)
Mahesh Chand(2)
Aarav Patel(2)
Harshit Pandey(2)
Asfaque Ansari(2)
Pankajkumar Patel(2)
Kripanshu Kumar(2)
Shafaet Hossain(2)
Mark Pelf(2)
Kirtesh Shah(2)
Jalpa Dhola(2)
Saurav Kumar(1)
Shubham Sidnale(1)
Niharika Gupta(1)
Gautam Singh(1)
Pasang Tamang(1)
Rikam Palkar(1)
Ananya Desai(1)
Bimalshi Jayarathna(1)
Sandeep Mishra(1)
Shivang (1)
Deepak Pippal(1)
Baibhav Kumar(1)
Kiran Kumar(1)
Rinki (1)
Vaishali Vishwakarma(1)
Raj Bhatt(1)
Deepika Sawant(1)
Arkadeep De(1)
Abhishek Yadav(1)
Arnab Das(1)
Sangeetha S(1)
Kartik (1)
Sharp Economy(1)
Manish Dwivedi(1)
Divyansh Gupta(1)
Lokendra Singh(1)
Bhawna Vishwakarma (1)
Emanuel Martins(1)
Vijay Pratap Singh(1)
Cristopher Coronado(1)
Muhammad Asif(1)
George (1)
Mohomed Shihan(1)
Harsh Sharma(1)
Vinay Ayinapurapu(1)
Željko Perić(1)
Muhammad Imran Ansari(1)
Arjit Soni(1)
Praveen Kumar(1)
Rasul Huseynov(1)
Sarthak Varshney(1)
Vishal Yelve(1)
Shweta Lodha(1)
Prakashkumar Sahoo(1)
Resources
No resource found
Defect Life Cycle (Bug Life Cycle) States Explained
Sep 16, 2025.
Using CancellationToken in Web API: A Complete Guide
Sep 14, 2025.
Discover how to use CancellationToken in Web APIs to enhance performance and resource management. Learn to gracefully handle client request cancellations, preventing wasted server resources on long-running tasks like database queries and file uploads. This guide covers best practices, scenarios for usage, and when to avoid CancellationToken, ensuring efficient and scalable API design. Implement cancellation effectively to improve user experience and reduce server load.
How to Connect ASP.NET Core MVC with Database using EF Core (DB-First)
Sep 11, 2025.
Unlock the power of database connectivity in ASP.NET Core MVC with EF Core's DB-First approach! This article simplifies connecting your application to SQL Server, offering a step-by-step walkthrough from project setup to data retrieval. Learn to scaffold models, register DbContext, and leverage LINQ for efficient database interactions, avoiding raw SQL.
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.
Content Security Policy (CSP) for Razor Pages and MVC
Sep 10, 2025.
Protect your ASP.NET Core Razor Pages and MVC applications from XSS attacks with Content Security Policy (CSP). This guide explains how CSP works, why it's crucial for security, and provides practical examples for implementation using middleware and the NWebsec library. Learn how to configure CSP headers, handle inline scripts with nonces, report violations, and establish best practices for a robust security posture.
How Generative Engines Work
Sep 09, 2025.
Learn how generative engines like ChatGPT, Google Gemini, Copilot, and Perplexity work. Discover the 3-step cycle of query expansion, retrieval, and generation — and why GEO matters for citations.
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.
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.
Prompt Engineering, Side-by-Side: CoT vs ToT vs GSCP for Real-Life, Cost-Effective Solutions
Sep 07, 2025.
Compare Chain-of-Thought (CoT), Tree-of-Thought (ToT), and Gödel’s Scaffolded Cognitive Prompting (GSCP) for cost-effective LLM solutions. Learn when to use each method based on task complexity, risk, and budget.
Beyond Crypto Trading: How Tokens Are Entering Everyday Life
Sep 05, 2025.
Discover how tokens are revolutionizing everyday life beyond crypto trading! This article explores the shift from speculative assets to utility tokens, using the Sharp Economy and SHARP token as a prime example. Learn how tokens incentivize learning, professional growth, community participation, and even fitness, paving the way for mass adoption and sustainable Web3 ecosystems. Explore the future of tokenization!
What Is MVC in Web Development
Sep 04, 2025.
Unlock the power of MVC (Model-View-Controller) in web development! This guide breaks down the MVC architecture, explaining how it separates data (Model), presentation (View), and control (Controller) for cleaner, more maintainable, and scalable applications. Discover the benefits, limitations, and real-world examples of MVC frameworks like ASP.NET MVC, Spring MVC, and more. Master this essential pattern for building robust web applications.
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!
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!
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.
Prompt Engineering: Real-Life Playbooks That Make Money and Save Time
Aug 29, 2025.
Unlock AI's potential! Real-world prompt engineering playbooks for freelancers & businesses. Save time, make money, and automate workflows. Copy-paste prompts inside!
Prompt Engineering: Brain-Blowing Real-Life Playbooks
Aug 29, 2025.
Unlock AI power! Real-life prompt engineering playbooks for faster results, fewer errors, & auditable outputs. Turn prompting into profit this week.
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!
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.
Why the Next AI Coding Cycle Will Create Clear Winners—and How to Spot One
Aug 21, 2025.
AI coding platforms are evolving beyond demos. The next wave demands repo-aware context, agentic workflows, evaluation, and cost efficiency—making software delivery measurable, reliable, and enterprise-ready. Discover SharpCoder.ai’s breakthrough showcase.
🏆 Sports: The Spirit of Life
Aug 21, 2025.
Sports: The Spirit of the life
Artificial Intelligence: Transforming Life, Work, and Future
Aug 20, 2025.
AI Artificial Intelligence
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.
Easy way to Handle cancellation of API Requests in React with AbortSignal (TypeScript)
Aug 20, 2025.
I am here to address a common challenge in React + TypeScript apps: managing asynchronous HTTP requests when they become irrelevant, especially when components unmount or props change during data fetching.
Node.js API Rate Limiting Explained: Token Bucket & Leaky Bucket Techniques
Aug 20, 2025.
This article is about implementing rate limiting in a Node.js API. Learn the why and how, compare algorithms (fixed window, sliding window, token bucket, leaky bucket), and see working Express middleware examples (in-memory and Redis-backed) with best practices for headers, testing, and production hardening.
What is middleware in Node.js (especially in Express.js)?
Aug 18, 2025.
This article explains what middleware is in Node.js, with a special focus on Express.js. It uses simple words and clear examples to help you understand how middleware works and why it’s important.
How to save position of the sortable (draggable) widgets
Aug 14, 2025.
Learn how to implement draggable, sortable dashboard widgets in .NET MVC using jQuery UI. Save and load widget order from SQL Server with C#, stored procedures, and a user-defined table type for a personalized UI.
Generative AI in Revenue Cycle Management (RCM)
Aug 13, 2025.
Discover how Generative AI is transforming Revenue Cycle Management (RCM) in healthcare. Learn key use cases, practical implementation steps, and the financial and operational impact for hospitals, physician groups, and healthcare systems.
Understanding the Software Testing Life Cycle (STLC)
Aug 11, 2025.
The Software Testing Life Cycle (STLC) is a structured process that ensures software quality through phases like requirement analysis, planning, test case creation, execution, defect tracking, and closure for reliable products.
Automating IT Support Requests with Microsoft Power Automate
Aug 08, 2025.
Learn how to automate IT support using Microsoft Power Automate and Forms. Capture support tickets, create Planner tasks, send emails, and update task details to boost productivity and streamline your IT workflow easily.
Build a Weather App in Python Using the OpenWeatherMap API
Aug 05, 2025.
Learn how to build a real-world Weather App in Python that fetches live weather data from the OpenWeatherMap API. This beginner-to-intermediate tutorial covers acquiring an API key, making HTTP requests, parsing JSON, handling errors, and optionally extending the app into a web interface using Flask.
Dependency Injection in .NET Core
Aug 04, 2025.
Learn Dependency Injection (DI) in .NET Core—automate service instantiation, promote clean architecture, and simplify testing. Explore DI types, service lifetimes, registration, and best practices for building scalable, maintainable applications.
What is Agile Life Cycle & Methodologies
Aug 01, 2025.
Discover the Agile life cycle and popular Agile methodologies like Scrum, Kanban, XP, and more. Learn how modern software teams manage projects, deliver value faster, and improve continuously with Agile.
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.
ASP.NET MVC Cheatsheet – A Beginner-Friendly Guide
Jul 30, 2025.
ASP.NET MVC Cheatsheet – A Beginner-Friendly Guide
🧾 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.
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.
How to Cancel Fetch Requests in JavaScript Using AbortController
Jul 23, 2025.
Learn how to cancel fetch requests in JavaScript using the AbortController API. Improve performance, prevent duplicate API calls, and manage async operations more efficiently with real-world examples and clean code.
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.
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.
Balancing the Burn: A Strategic Approach to Team Wellness and Resilience
Jul 16, 2025.
Addressing burnout and promoting balance within teams requires emotional intelligence, structured dialogue, and cultural shifts that foster resilience.
Understanding .NET MVC
Jul 14, 2025.
ASP.NET MVC is a web framework from Microsoft that uses the Model-View-Controller pattern to build clean, testable, and scalable web applications using C# and Razor.
OpenTelemetry in .NET 9: Trace Requests End-to-End with Jaeger
Jul 11, 2025.
Trace user requests end-to-end using OpenTelemetry and Jaeger with .NET 9. Monitor HTTP calls, SQL queries, and frontend actions in real-time, enabling full-stack observability, debugging, and performance optimization.
MVC Architecture in Node.js (With Code Examples)
Jul 11, 2025.
Learn how to build a clean, maintainable Node.js app using the MVC pattern with Express.js, separating concerns into Models, Views, and Controllers for scalable, testable, and organized code structure.
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.
A Typical Day in the Life of a Prompt Engineer: A Theoretical Perspective
Jul 03, 2025.
Prompt engineering merges linguistics, AI, and cognitive science to shape large language model behavior. It’s an emerging discipline designing structured prompts, workflows, and safety controls, vital for reliable, ethical AI interactions.
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.
Webhook pattern for an Azure Logic App
Jul 01, 2025.
This article describes how we can use asynchronous request reply pattern, webhook pattern with logic app to resolve timeout related issues during large data processing.
Difference Between Minimal API and Controller API .NET Core
Jun 20, 2025.
Explore the key differences between Minimal API and Controller API in .NET Core, including structure, performance, routing, and use cases—helping you choose the right approach for your project.
🚨 A Backend Developer’s Pain 🚨
Jun 18, 2025.
Postman tests may pass, but real issues begin with frontend calls, often due to CORS. Browsers enforce security checks that Postman skips. Understanding CORS is key to debugging real-world API problems.
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.
Ethical Implications of Generative AI in Everyday Life
Jun 06, 2025.
Explore the ethical challenges of generative AI, from bias and misinformation to privacy and ownership, and learn practical frameworks and solutions to build responsible, transparent, and human-centered AI systems.
Is AI Making People Sick?
Jun 06, 2025.
Bold innovation often brings unintended consequences—and artificial intelligence (AI) is no exception. While AI promises efficiency, accuracy, and convenience, a growing number of experts, healthcare professionals, and researchers are raising an alarming concern: Is AI quietly making people sick?
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.
Understanding Cycle Sort in Java
Jun 01, 2025.
The fundamental principle behind cycle sort is to place each element directly into its final sorted position. The algorithm works by counting how many elements are smaller than the current element, which determines its correct position in the sorted array.
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.
Build a CRUD App in .NET 8 MVC Using Dapper and Repository Pattern
May 06, 2025.
Learn to build a CRUD app in .NET 8 MVC using Dapper for lightweight data access and the Repository Pattern for clean code architecture.
Authenticated Requests in .NET 9 Web API [GamesCatalog] 21
May 02, 2025.
We aim to create a mobile app and its backend using C# and .NET. We will use the IGDB game review API: https://api-docs.igdb.com/#examples With it, we can build a mobile game catalog app and store our reviews.
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.
Implementing TOTP (Time-Based One-Time Password) MFA in .NET Core
Apr 22, 2025.
TOTP (Time-based One-Time Password) is a secure two-factor authentication (2FA) method that generates temporary, single-use codes for user verification.
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.
ASP.NET Session State: Storing Data Beyond IIS Restarts
Mar 20, 2025.
?To maintain ASP.NET sessions after an IIS restart, configure the session state to use SQL Server, State Server, or a distributed cache like Redis instead of the default in-memory storage.
Efficient File Upload and Download from Network Drive in C# MVC
Mar 07, 2025.
Learn the best way to upload and download files from a network drive or shared storage using an MVC application in C#.
Bringing Digital Voices to Life: Azure AI Text-to-Speech Avatar
Mar 05, 2025.
Azure AI Text-to-Speech Avatar is a tool designed to create digital avatars that can speak in a remarkably human-like manner. This innovation is changing the way we interact with AI, making virtual assistants, automated customer service, and even gaming characters more lifelike than ever.
Integrate External Application with D365 CRM Using Power Automate
Feb 24, 2025.
This article covers setting up automated workflows, using connectors, and synchronizing data seamlessly. Enhance business processes by enabling smooth communication between Dynamics 365 and third-party apps with low-code automation.
Dynamic CORS Setup in .NET Core with JSON Configuration
Feb 09, 2025.
Learn how to configure CORS dynamically in .NET Core 9 using appsettings.json. Manage multiple allowed origins easily, enhance security, and improve flexibility for different environments like development, staging, and production.
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.
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.
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.
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.
ASP.NET 8 – Using Bootstrap 5 Themes
Jan 20, 2025.
This article covers selecting and installing themes, configuring settings in appsettings.json, passing theme data to views, and managing UI consistency across different themes for a professional web app look.
Entity Framework (5-1), With .Net Core MVC, Database-First --- Scaffold-DbContext
Jan 18, 2025.
This article is to discuss the reverse engineering command Scaffold-DbContext by AI.
Integrate GPT Models with Azure OpenAI Service
Jan 18, 2025.
Learn to set up Azure OpenAI Service: create an account, request access, deploy resources, obtain API keys, explore models like GPT-4, integrate via APIs, test, monitor usage, and scale for powerful AI-driven applications.
SQL Server – Query Performance – Database Maintenance can Help
Jan 14, 2025.
To improve query performance in an ASP.NET MVC application using SQL Server, periodic database maintenance steps like updating statistics and defragmenting indexes are essential. This includes manual or automatic execution for optimal results.
What is Factory Method Design Pattern?
Jan 06, 2025.
Learn how to build an AI-powered birthday party planner using Copilot Studio and Microsoft OpenAI. Streamline theme selection, product management, and logistics with intelligent automation for efficient and creative event planning.
Understanding Connected Disconnected Scenarios in EF Core MVC
Jan 06, 2025.
This article explains the connected and disconnected scenarios in Entity Framework Core for ASP.NET Core MVC applications. It covers how EF Core handles data in these scenarios, including change tracking, entity states, and managing database contexts.
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.
Configure SharePoint Site Settings Using Power Automate
Dec 26, 2024.
This article covers automating site settings configuration, reducing manual tasks, and improving efficiency. With Power Automate workflows, you can manage permissions, update site properties, and automate administrative tasks effortlessly.
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.
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.
Rate Limiting In .NET Core
Dec 07, 2024.
This article explores implementing rate limiting using middleware, configuring policies, and handling scenarios like API throttling. Learn to optimize your applications effectively with ASP.NET Core.
Ollama Unplugged with Personality: Breathing Life into AI Conversations
Dec 05, 2024.
Ollama Unplugged with Personality explores how Ollama enhances AI conversations by infusing personality into interactions. This approach transforms AI from a static tool into a dynamic, engaging conversation partner.
Customized Authentication Filters in ASP.MVC Core 6
Dec 04, 2024.
Custom authentication filters in ASP.NET Core 6 allow you to implement personalized authentication logic. You can create custom attributes, middleware, or policy-based authorization to manage user access based on roles, claims, or tokens.
Understanding .http Files in .NET 8
Dec 01, 2024.
Discover how to enhance API testing with Visual Studio's .http file feature. Learn to create and execute HTTP requests directly within the IDE, eliminating the need for external tools like Postman.
Optimizing Performance in Azure Cosmos DB: Best Practices
Nov 29, 2024.
Azure Cosmos DB optimization enhances performance, scalability, and cost-efficiency. Key practices include selecting the right partition key, customizing indexing, optimizing queries, tuning consistency levels, and leveraging TTL and change feed.
How to Use Markdown to Format Power Automate Approval Requests
Nov 25, 2024.
This guide explains how to create visually appealing and well-structured emails, improving clarity and user experience in approval workflows. Customize your emails with ease using HTML.
Integrating Demo Registration with External APIs in ASP.NET MVC C#
Nov 22, 2024.
We delve into the implementation of integrating an external API for vehicle registration within an ASP.NET MVC application. The method, Addadminvehicle, serves as a bridge between the web application and the BureauID API, which is responsible for handling vehicle fastag registrations.
Bulk Import of ID Card Data from Excel in ASP.NET MVC C#
Nov 22, 2024.
This guide covers the process of parsing Excel files, extracting data, and inserting it into a database, ensuring smooth data handling and optimization for large datasets in a seamless, automated process.
Top Health and Career Challenges of Software Developers
Nov 13, 2024.
Learn how to balance your health and career in the fast-paced world of software development. Tips for managing stress, growth, and productivity!
Understanding Keyed Services in .NET 8
Nov 13, 2024.
Keyed Services in .NET 8 enhance dependency injection by allowing multiple implementations of an interface to be registered with unique keys. This enables flexible dependency resolution, ideal for tailored service instances in applications.
Managing User Data in Azure AD with Microsoft Graph API
Nov 05, 2024.
Microsoft Graph API is a RESTful web API that provides access to Microsoft 365 services, enabling developers to manage user data in Azure Active Directory. It allows operations such as retrieving, creating, updating, and deleting users.
Dependency Injection & EF Migrations in ASP.NET MVC with Autofac
Oct 30, 2024.
This article demonstrates how to implement Dependency Injection (DI) using Autofac in an ASP.NET MVC application and integrate Entity Framework for database operations, including migrations.
Add Multiple Users to SharePoint Group together in one API call
Oct 26, 2024.
This article outlines how to streamline adding multiple users to a SharePoint Group using Power Automate. By leveraging a single HTTP request, users can efficiently batch add members to a group.
ASP.NET Core Middleware
Oct 22, 2024.
ASP.NET Core Middleware plays a crucial role in the request processing pipeline of web applications. It allows developers to add custom functionalities, such as authentication, logging, and error handling, to handle HTTP requests and responses efficiently.
Farewell CentOS: Moving to Rocky, AlmaLinux, CentOS Stream, or RHEL
Oct 22, 2024.
CentOS 7 reaches its end of life on June 30, 2024. Transition to RHEL, AlmaLinux, Rocky Linux, or CentOS Stream now. CentOS 7, a popular open-source OS, reaches the end of life on June 30, 2024, prompting users to migrate to alternatives like RHEL, AlmaLinux, or Rocky Linux.
Explaining IResultFilter in ASP.NET Core
Oct 14, 2024.
This article explores the ASP.NET Core `IResultFilter`, which allows custom logic execution before and after an action result. It discusses advantages and disadvantages and includes an implementation example for result filtering.
Mastering SQL Query Generation with Azure OpenAI
Oct 09, 2024.
Leverage Azure OpenAI to transform natural language into SQL queries seamlessly. By integrating Azure OpenAI and Azure SQL Database, you can simplify data querying and enhance accessibility. Learn how to set up the environment, construct prompts, and generate SQL queries using powerful AI models.
Sending Emails in ASP.NET Core MVC Using SMTP
Sep 25, 2024.
In this guide, we'll explore how to send emails in ASP.NET Core MVC using SMTP. We'll cover the essential setup, including configuring SMTP settings, creating an email service, and sending messages programmatically.