TECHNOLOGIES
NEWS
VIDEOS
FORUMS
JOBS
BOOKS
EVENTS
MORE
INTERVIEWS
Live
LEARN
Training
CAREER
MEMBERS
BLOGS
CHALLENGES
CERTIFICATION
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
CSharp.com
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 (18)
Velladurai (6)
Ajay Kumar(6)
Safyan Yaqoob(5)
Vijay Yadav(5)
Satya Karki(4)
Dashrath Hapani(4)
Ziggy Rafiq(3)
Kirtesh Shah(3)
Tahir Ansari(3)
Akshay Shedwad(3)
Chetan Sanghani(3)
Manoj Kalla(2)
Praveen Raveendran Pillai(2)
Vishal Yelve(2)
Rinki (2)
Vikas Singh(2)
Sangeetha S(1)
Anup Hosur(1)
Pravinkumar Birajdar(1)
Shafaet Hossain(1)
Ishika Tiwari(1)
Ayush Gupta(1)
Geo J Thachankary(1)
Mayooran Navamany(1)
Rama Dabburi(1)
Vijay Kumari(1)
Jefferson S. Motta(1)
Yogesh Vedpathak(1)
Waqas Anwar(1)
Rahul Sharma(1)
Rasul Huseynov(1)
Devesh Omar(1)
Prakashkumar Sahoo(1)
Jignesh Kumar(1)
Harminder Singh(1)
Balaji Thilagar(1)
Mohammad Rabie(1)
Jithu Thomas(1)
Imran Shaikh(1)
Habibul Rehman(1)
Nitin Pandit(1)
Surya Ghimire(1)
George (1)
Latest First
Oldest First
Most Viewed
Sort By
Search Results
No search result found
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.
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.
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.
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.
Options Pattern In ASP.NET Core
Nov 25, 2024.
The Options pattern in ASP.NET Core simplifies configuration management with strongly-typed settings. Using classes aligned to appsettings.json, it ensures type safety, dependency injection, and validation.
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.
Webgrid and Gridview in ASP.NET Core and .NET Core Explained
Nov 21, 2024.
Learn dynamic paging and sorting in .NET Core using JavaScript and jQuery. Modify URLs with query strings for seamless server interaction, leveraging Bootstrap for responsive design and intuitive user experience.
Introduction To Minimal API using ASP.NET Core 8
Nov 21, 2024.
Minimal API in .NET Core 6.0 simplifies the process of creating HTTP APIs by reducing code verbosity and dependencies. It is ideal for microservices, offering advantages like lightweight routing, improved performance, and accelerated development.
What's New in ASP.NET Core 9?
Nov 15, 2024.
C# 13 enhances developer productivity with features like flexible params collections, scoped locks, and partial properties, allowing for streamlined coding, improved performance, and robust thread safety.
Deploying ASP.NET Core 9 Application on IIS
Nov 14, 2024.
Learn how to publish ASP.NET Core 9 applications on IIS. This guide covers key steps such as setting the correct target framework, configuring IIS settings, handling common errors like 503, and using the app_offline.htm file for maintenance mode.
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.
JWT Token Based Implementation using ASP.NET Core Web API
Oct 29, 2024.
JWT (JSON Web Token) is a way to share information securely between two or more systems and JWT structure allows for secure information exchange and user authentication.
Mastering Session Management in ASP.NET Core with NCache
Oct 24, 2024.
Learn how to implement high-performance, scalable caching for ASP.NET applications, ensuring optimal session state handling, improved load balancing, and fault tolerance with NCache integration.
Why In ASP.NET Core logging is often implemented as a singleton
Oct 20, 2024.
In ASP.NET Core, logging is often implemented as a singleton to ensure efficient resource usage, centralized management, and thread-safe logging across the application.
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.
Minimal APIs or Controllers in ASP.NET Core
Oct 14, 2024.
In ASP.NET Core, developers can choose between Minimal APIs and Controllers for building web APIs. Minimal APIs offer a lightweight, streamlined approach with simpler routing, while Controllers follow the traditional MVC pattern with more structure and features.
Validation of Complex Objects in Multi-Lingual Environment Using DynamicVNET With ASP.NET Core
Oct 14, 2024.
DynamicVNET is a lightweight, rule-based validation library for .NET applications, designed to validate POCOs while adhering to the Single Responsibility Principle (SRP). It integrates seamlessly with ASP.NET Core, enabling flexible and dynamic validation for API requests with minimal configuration.
Customizing HTTP Headers with Middleware in ASP.NET Core
Oct 12, 2024.
In this article, we explore how to modify HttpResponse using custom middleware in ASP.NET Core. We create a custom middleware that injects headers into the response. By adding conditions, specific APIs can have unique headers.
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.
With code examples, learn how to develop ASP.NET Core C# 12 using domain-driven design
Sep 20, 2024.
In this guide, you will learn how to develop applications using ASP.NET Core with C# 12, applying domain-driven design principles. Through clear code examples, we’ll explore how to create effective domain models, implement clean architecture, and leverage best practices to build scalable and maintainable software.
Understanding Model Binding in ASP.NET Core with .NET 8
Sep 17, 2024.
Model binding in .NET Core simplifies the process of mapping HTTP request data to action method parameters. It automatically extracts data from various sources like query strings, form submissions, route parameters, HTTP headers, and request bodies, making it easier to handle client-server interactions efficiently.
Explaning SignalR in ASP.NET Core 8
Sep 17, 2024.
Learn about setting up SignalR hubs, managing connections, and utilizing WebSocket and Server-Sent Events for efficient, scalable messaging in .NET 8 environments.
Explaning IActionFilter in ASP.NET Core
Sep 16, 2024.
This article explains ASP.NET Core's `IActionFilter`, highlighting its use in handling cross-cutting concerns like logging, validation, and authentication while outlining its advantages and potential drawbacks in maintaining code efficiency.
Cross-Site Request Forgery (CSRF) in ASP.NET Core
Sep 12, 2024.
CSRF is a security vulnerability where attackers trick authenticated users into making unintended requests. This ASP.NET Core example demonstrates using anti-forgery tokens to prevent CSRF attacks. It shows how to protect endpoints with tokens, customize them, and handle AJAX requests securely.
Explaining WebForms in ASP.NET Core
Sep 12, 2024.
Learn about alternatives like Blazor and Razor Pages, leveraging component-based architecture, state management, server-side rendering, and enhancing web app performance and scalability.
Preventing XSS Attacks in ASP.NET Core Web API
Sep 08, 2024.
Cross-site scripting (XSS) is a common web application vulnerability where malicious scripts are injected and executed in a user's browser. To prevent XSS in ASP.NET Core Web APIs, techniques like input validation, output encoding, and sanitizing user input can safeguard against potential attacks.
Preventing DoS Attacks in ASP.NET Core MVC Applications
Sep 08, 2024.
This ASP.NET Core MVC project demonstrates essential techniques to prevent DoS attacks, including rate limiting, request size limiting, and Google reCAPTCHA integration. The solution ensures security by controlling incoming requests, validating inputs, and preventing automated attacks while maintaining application performance.
Creating Excel Reports with EPPlus in ASP.NET Core 8.0
Sep 02, 2024.
Learn how to generate and manage Excel reports in ASP.NET Core 8.0 using the EPPlus library. This guide covers the essentials of integrating EPPlus for creating and manipulating Excel workbooks, including data export and report automation.
Simplifying ASP.NET Core 8 Logging with Serilog and AppInsight
Sep 02, 2024.
Serilog is a powerful .NET logging library that supports structured logging, enhancing application monitoring and debugging. To integrate Serilog with ASP.NET Core and Application Insights, install essential NuGet packages, configure appsettings.json, and set up Serilog in Program.cs.
Complete File Upload and Download in ASP.NET Core MVC
Aug 29, 2024.
Implement file upload and download functionality in an ASP.NET Core MVC application. This guide covers project setup, model creation, controller logic, view implementation, and security best practices. You'll create a simple app for managing file uploads and downloads, including file validation and storage.
Integrate AI into ASP.NET Core App using Semantic Kernel
Aug 29, 2024.
Semantic Kernel simplifies AI integration by providing an SDK that connects applications with LLMs like OpenAI and Hugging Face. It features plugins, an orchestration layer, and connectors to streamline setup. In ASP.NET Core, Semantic Kernel reduces complexity, allowing easy addition of AI capabilities.
Implementation Ajax Calls in ASP.NET Core MVC
Aug 27, 2024.
Learn how to build a dynamic fleet management system using AJAX in ASP.NET MVC with SQLite as the database provider. This tutorial guides you through creating, managing, and displaying vehicle data in a responsive web application, enhancing user experience with real-time updates.
Error Handling for Email Confirmation in ASP.NET Core
Aug 22, 2024.
Learn how to manage exceptions during the email verification process, enhance user experience, and ensure secure account activation. The guide covers best practices for robust email confirmation workflows.
Getting Started with Unit Testing in ASP.NET Core
Aug 22, 2024.
Learn about essential testing frameworks like xUnit and NUnit, explore mocking and dependency injection techniques, and gain insights into best practices for writing robust test cases. Improve code quality and ensure reliable software with practical testing strategies.
Building an ASP.NET Core Web API with Gridify
Aug 22, 2024.
This guide walks you through setting up a .NET Core API, integrating Gridify for dynamic query handling, and enhancing your application's performance with clean, maintainable code.
Getting started with Integration Testing in ASP.NET Core
Aug 20, 2024.
Learn the essentials of integration testing in ASP.NET Core. This guide covers setting up your testing environment, creating and running integration tests, and using frameworks and tools to ensure your application’s components work together seamlessly.
A brief introduction to ASP.NET Core using C#12 and .NET 8
Aug 18, 2024.
A brief introduction to ASP.NET Core using C# 12 and .NET 8 by Ziggy Rafiq. This modern framework enables you to build cross-platform, high-performance web applications. To get started, discover key features, advantages, and a practical example.
Use of Automapper in ASP.NET Core
Aug 16, 2024.
AutoMapper is a powerful .NET library that simplifies object-to-object mapping in ASP.NET Core applications. It helps in converting Data Transfer Objects (DTOs) to domain models and vice versa, streamlining data transformations.
Create a Custom Middleware Component in ASP.NET Core
Aug 14, 2024.
This guide covers defining, implementing, and integrating middleware, allowing you to intercept and manipulate HTTP requests and responses effectively for custom functionality and performance improvements.
Best Practices for Managing Large Session States in ASP.NET MVC
Aug 14, 2024.
To manage large session states in ASP.NET MVC efficiently, follow best practices: minimize stored data, use serializable objects, enable session state compression, and implement distributed caching with Redis or Memcached.
How to Show Direct Binary Image Using Handler in ASP.NET WebForms
Aug 09, 2024.
Learn how to display images stored as binary data in a database using an HTTP handler in ASP.NET WebForms. This guide covers creating a database table, a stored procedure for image retrieval, and implementing an HTTP handler to serve images dynamically. It also includes integrating the handler into a web form.
Understanding HttpHandler vs HttpModule in ASP.NET Web Forms
Aug 07, 2024.
In ASP.NET Web Forms, HttpHandler and HttpModule customize request processing. HttpHandler processes specific request types, such as serving dynamic content or custom file downloads. HttpModule intercepts all requests, allowing for global processing like logging, authentication, and request manipulation.
Implementing Pagination and Filtering in ASP.NET Core 8.0 API
Aug 06, 2024.
Learn how to efficiently implement pagination and filtering in your ASP.NET Core 8.0 API using Entity Framework Core. Enhance performance, scalability, and user experience with server-side data handling techniques.
Introduction to ASP.NET Core Identity Architecture
Aug 05, 2024.
ASP.NET Core Identity is a membership system for managing authentication and authorization in web applications. It includes components like IdentityUser, IdentityRole, and Claims, and features such as password hashing, email confirmation, and two-factor authentication.
Exception Handling in ASP.NET Core 8
Jul 31, 2024.
Learn how to effectively manage exceptions in ASP.NET Core 8 with our comprehensive guide. Discover best practices for error handling, from using middleware and exception filters to implementing global error handling and logging.
Advanced Logging Techniques in ASP.NET Core 8 with Serilog
Jul 31, 2024.
Serilog is a diagnostic logging library for .NET applications. It provides a simple, flexible and powerful way to log application events, errors and other information. This article describes how we can log ASP.NET Core 8 application with Serilog
What is a Handler in ASP.NET Web Forms and How to Use It
Jul 30, 2024.
Learn about HTTP handlers in ASP.NET Web Forms, which handle specific HTTP requests like image generation and file downloads. Implement handlers by creating a class that implements IHttpHandler, registering it in web. config, and using it for efficient, lightweight request processing.
How to Use JWSHMAC in ASP.NET Web Application
Jul 29, 2024.
Learn how to implement JWSHMAC in an ASP.NET web application to secure JSON data using HMAC. This guide covers installing the JWT NuGet package, creating a JWT helper class for token generation and validation, and configuring authentication middleware.
Exception Filters in ASP.NET Core
Jul 25, 2024.
Exception handling in ASP.NET Core is crucial for application stability. Exception filters provide a centralized way to manage errors, log them, and return custom responses, enhancing maintainability and user experience.
Understanding Middleware in ASP.NET Core
Jul 24, 2024.
Middleware in ASP.NET Core is a sequence of code components that handle HTTP requests and responses. It enables custom processing, such as authentication, logging, and error handling.
Logging Patterns in ASP.NET Core 8
Jul 22, 2024.
In this article, we will explore the essential logging patterns in ASP.NET Core 8 to enhance your application's observability. Learn about basic, structured, and exception logging, along with best practices for effective log management.
How to Implement Memcached in C# ASP.NET MVC Project?
Jul 19, 2024.
Learn how to enhance performance in a C# ASP.NET MVC project using Memcached. This guide covers installing Memcached, integrating it with your application, and implementing caching to improve response times and reduce database load.
Deploying ASP.NET MVC Application to Azure Cloud Using Azure DevOps from GitHub
Jul 18, 2024.
Deploy ASP.NET MVC apps on Azure via Azure DevOps & GitHub. Set up CI/CD pipelines for seamless integration & deployment. Create Azure App Service, link GitHub repos, configure build & release pipelines for automated build, test, & deployment. Monitor deployments in Azure Portal for efficient app management.
Implementing a Audit Trail in ASP.NET Core Web API
Jul 17, 2024.
Learn how to implement a robust audit trail in an ASP.NET Core Web API using Entity Framework Core and SQL Server. This comprehensive guide covers setting up the project, defining data models like Products and AuditLogs, configuring the database context, applying migrations, and creating CRUD operations.
Dependency Injection in ASP.NET Core
Jul 16, 2024.
Dependency Injection (DI) in ASP.NET Core enhances modularity, testability, and maintainability by providing class dependencies externally via the built-in Inversion of Control (IoC) container. Configure services in Startup.cs, utilize constructor injection in controllers, and choose appropriate lifetimes (Transient, Scoped, Singleton).
Building RESTful APIs with ASP.NET Core
Jul 16, 2024.
In today's interconnected digital landscape, creating robust and efficient APIs is crucial for enabling seamless communication between applications. ASP.NET Core, the open-source framework from Microsoft, provides a powerful platform for developing RESTful APIs with ease.
Authentication and Authorization in ASP.NET Core
Jul 16, 2024.
Learn about implementing robust security in ASP.NET Core with a focus on authentication and authorization. This guide covers ASP.NET Core Identity, claims-based and role-based authorization, JWT, OAuth, OpenID Connect, and best practices for securing web applications and APIs.
Single Sign-On (SSO) in ASP.NET Core Applications
Jul 15, 2024.
Implementing Single Sign-On (SSO) with IdentityServer4 in ASP.NET Core simplifies user authentication across applications, enhancing security and user experience. Centralized authentication and token-based authorization streamline management and improve overall system security, making it ideal for modern web applications.
Understanding Multitasking and Multithreading in ASP.NET and .NET Core
Jul 12, 2024.
Learn about multitasking and multithreading in ASP.NET and .NET Core. Discover how async/await keywords enhance responsiveness, manage concurrent operations efficiently, and handle IO-bound tasks. Explore real-world examples and differences between these techniques for optimized application performance.
Implementing Global Search with Detailed Views in ASP.NET Core MVC
Jul 10, 2024.
Learn how to implement a robust global search feature in ASP.NET Core MVC. This tutorial covers setting up models like Product and Category, configuring the database with Entity Framework, seeding initial data, creating a search service for querying both products and categories, and developing responsive views with detailed information.
Integrating an Online Payment Gateway in ASP.NET using ADO.NET
Jul 10, 2024.
Integrating an online payment gateway in ASP.NET using ADO.NET involves setting up a payment gateway account, creating an HTML form to collect payment details, redirecting to the payment gateway for processing, handling the payment response, and updating the database. Ensure security, validate responses, and test thoroughly.
How to Implement Multi Factor Authentication Using Authenticator App in ASP.NET MVC Project?
Jul 08, 2024.
Enhance your ASP.NET MVC project's security with multi-factor authentication (MFA) using an authenticator app. This guide provides step-by-step instructions for setting up your project, configuring authentication keys, creating necessary models and controllers, and generating QR codes to implement a robust MFA system.
Setting Up Google Authentication in ASP.NET Core MVC
Jul 08, 2024.
Integrate Google Authentication into your ASP.NET Core MVC application for secure and easy user login. Follow steps to create a project in Visual Studio, configure Google API Console, install necessary NuGet packages, update Startup. cs, and handle user authentication and profile management seamlessly.
How To Create Sorting And Paging In ASP.NET Web Forms GridView
Jul 04, 2024.
Learn how to enable sorting and paging in an ASP.NET GridView by configuring properties, handling events, and binding data using C# code examples and best practices for efficient data display.
Getting Started with Docker-Compose for ASP.NET Core and MSSQL
Jul 04, 2024.
This article guides you through setting up a Docker Compose environment for an ASP.NET Core application and an MSSQL database, covering creation, configuration, and verification steps for efficient containerized development.
Managing CRUD Operations in ASP.NET MVC with Razor and C#
Jul 03, 2024.
Learn how to implement CRUD operations in an ASP.NET MVC application using Razor views and C#. This guide covers creating, reading, updating, and deleting records, with detailed controller actions and views for managing data efficiently.
Sending Email Using Gmail Server in ASP.NET Core MVC
Jul 01, 2024.
Learn how to integrate the Gmail server for sending emails in ASP.NET Core MVC using MailKit. This tutorial covers setting up SMTP configuration, handling email templates, and sending messages programmatically.
Creating Dynamic Dropdown Lists in ASP.NET MVC
Jun 28, 2024.
Dropdown lists, or <select> elements, are essential in web forms, enabling users to choose from a predefined list of options. They enhance user experience by simplifying input selection and ensuring data consistency.
Implementing Cascading Dropdowns in ASP.NET MVC Using jQuery AJAX
Jun 28, 2024.
create a cascading dropdown functionality where the selection of a "Brand" in the first dropdown (BrandId) should dynamically populate the options in the second dropdown (BrandlistId). However, there are some issues and potential improvements that need to be addressed to ensure correct functionality.
Understanding Dependency Injection in ASP.NET Core Web API
Jun 24, 2024.
Dependency Injection (DI) is a design pattern used to achieve Inversion of Control (IoC) between classes and their dependencies. In ASP.NET Core, DI is a fundamental part of the framework, making it easier to manage dependencies and improve the modularity, testability, and maintainability of your applications.
Integrating Third-Party API Using AJAX in ASP.NET Core MVC
Jun 23, 2024.
Integrating third-party APIs into your web application enhances functionality by accessing external data and services. This article demonstrates integrating an API using AJAX in an ASP.NET Core Razor Pages app. It covers project setup, form design, making AJAX calls, and dynamically displaying data in a Bootstrap table.
How To Connect Database in ASP.NET MVC using C# with ADO.NET
Jun 17, 2024.
Learn how to integrate SQL Server with your MVC application, configure connection strings, and perform CRUD operations. Ideal for developers seeking to enhance their data access techniques in ASP.NET.
Mastering Azure Blob Storage with ASP.NET Core MVC
Jun 16, 2024.
Azure Blob Storage offers scalable, cost-effective storage for unstructured data like images and documents. Integrated seamlessly with ASP.NET Core MVC, it provides secure uploads, downloads, and management of data, enhancing web applications with robust storage solutions and efficient data handling capabilities.
Performance Optimization in ASP.NET MVC Applications
Jun 15, 2024.
Performance optimization in ASP.NET MVC involves techniques like efficient data access, using Entity Framework wisely, implementing caching, using async/await for non-blocking operations, minimizing ViewState, bundling and minifying resources, enabling GZIP compression, optimizing queries.
Preventing CSRF Attacks in an ASP.NET Core MVC
Jun 13, 2024.
Cross-Site Request Forgery (CSRF) is a type of attack that can force a user's browser to send unwanted requests to a web application on which the user is authenticated, potentially leading to unintended actions on the user's behalf.
Preventing XSS Attacks in ASP.NET Core MVC
Jun 12, 2024.
Build a secure ASP.NET Core MVC blog app with Entity Framework Core. Follow steps to create models, controllers, views, and implement client-side validation and sanitization to thwart XSS attacks. Access the GitHub project for code reference and ensure your application is protected against common vulnerabilities.
How to use Embedded BI and Create Self-serviced Dashboards in ASP.NET Core App
Jun 12, 2024.
Learn how to integrate Embedded BI into your ASP.NET Core application, empowering users to create self-service dashboards. Discover powerful data visualization and reporting tools to enhance decision-making.
Oracle Stored Procedure Output Parameters with Dapper in ASP.NET Core
Jun 11, 2024.
This article provides a detailed guide to integrating Oracle stored procedures with ASP.NET Core using Dapper, focusing on handling output parameters, which can often be a challenging aspect of database interactions.
Controller Action Result (2), in ASP.NET (Core) MVC
Jun 10, 2024.
This article is a following up for the previous article, Controller Action Result (1), in ASP.NET MVC to cover the situation of ASP.NET Core MVC. This article actually has the same conclusion as previous one, with emphasis to Core situation.
1
-
100
of
4622
<<
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.