TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
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
About Handler
Share
facebook
twitter
linkedIn
Reddit
Topics
No topic found
Content Filter
Articles
Videos
Blogs
News
Complexity Level
Beginner
Intermediate
Advanced
Refine by Author
[Clear]
Sourav Kayal (11)
Ajay Kumar (4)
Mahesh Chand (4)
Vijay Yadav (3)
Jitendra Mesavaniya (3)
Mike Gold (3)
Alkesh Bijarniya (2)
Priyanka Jain (2)
Sardar Mudassar Ali Khan (2)
Raj Kumar (2)
Ghanashyam Nayak (2)
Nimit Joshi (2)
Abhimanyu K Vatsa (1)
Manoj Kalla (1)
Ravishankar Singh (1)
Sanjay Kumar (1)
Jignesh Trivedi (1)
Mukesh Kumar (1)
Mushtaq M A (1)
Atul Warade (1)
Prashant Nimbare (1)
Hemant Kumar (1)
Debasis Saha (1)
Naveed Zaman (1)
Suraj Sahoo (1)
Mark Pelf (1)
Sreejith Gopinathan (1)
Ashish Bhatnagar (1)
Khoday Akilesh (1)
Ashutosh Singh (1)
Abdul Raheem (1)
Vipul Malhotra (1)
Jayakumar Balasubramaniam (1)
Christopher Hall (1)
Abhishek Jaiswal (1)
Devanand Laroiya (1)
Dipen Lama (1)
Santosh Gadge (1)
Mohit Ande (1)
Anand Narayanswamy (1)
Ashok Kumar P (1)
Venkatasubbarao Polisetty (1)
Deepak Dutta (1)
Sachin Kalia (1)
Mudita Rathore (1)
Vishal Nayan (1)
Habibur Rony (1)
Vinoth Rajendran (1)
Michael Griffiths (1)
Abhijeet Singh (1)
Ankur Mishra (1)
Amir Ali (1)
Sazid Mauhammad (1)
Chintan Rathod (1)
Abhishek Yadav (1)
Biswarup Kundu (1)
Pranav J.Dev (1)
Gaurav Kumar (1)
Prashant Rewatkar (1)
Mayank Tripathi (1)
Abhishek Jain (1)
Aditya Gaur (1)
Amit Choudhary (1)
Gopi Chand (1)
Pramod Thakur (1)
Amit Tyagi (1)
Mohammad Elsheimy (1)
Purushottam Rathore (1)
Jure (1)
Shankar M (1)
Ashish Singhal (1)
Munir Shaikh (1)
Related resources for Handler
No resource found
Logging Errors With Error Logging Modules And Handlers (ELMAH) in ASP.NET MVC 4
10/8/2024 8:33:16 AM.
Error Logging Modules and Handlers (ELMAH) is an alternative to Health Monitoring System (HMS) for logging errors and is free and available under an open-source license created and managed by Atif Azi
Overview of Minimal API
10/1/2024 8:20:11 AM.
Minimal API in ASP.NET Core provides a streamlined approach to building HTTP APIs with minimal configuration. Introduced in .NET 6, it allows for lightweight API development without controllers, makin
How to create a language translator using Google's API and JavaScript
9/17/2024 10:42:21 AM.
This article demonstrates how to create a language translator using the Google API and JavaScript. It covers integrating the Google API for translating text, contrasting it with previous methods like
Detailed use of Action Delegate in C#
9/11/2024 6:46:49 AM.
In C#, the Action delegate represents a method that does not return a value and can accept up to 16 parameters. It's useful for passing methods as arguments, callbacks, and event handling. It sup
How to Show Direct Binary Image Using Handler in ASP.NET WebForms
8/9/2024 5:20:49 AM.
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 impl
Creating Custom Authorization Policy Provider In ASP.NET Core
8/7/2024 10:46:39 AM.
Learn how to implement custom authorization policies in ASP.NET Core using IAuthorizationPolicyProvider. Discover how to create policies dynamically based on runtime information, register them with a
Understanding HttpHandler vs HttpModule in ASP.NET Web Forms
8/7/2024 7:01:04 AM.
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 interc
CQRS Simplified - Explained and Implemented
7/30/2024 9:13:28 AM.
CQRS (Command Query Responsibility Segregation) in .NET Core separates read and write operations for better scalability and performance. By using distinct models for commands and queries, it simplifie
Getting Started With Unit Testing Using C# And xUnit
7/30/2024 6:35:32 AM.
Unit Testing in ASP.NET Core involves testing individual components or methods to ensure they work as intended. By creating test cases for small functionalities, developers can catch bugs early, impro
What is a Handler in ASP.NET Web Forms and How to Use It
7/30/2024 6:26:02 AM.
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, regis
Implementing CQRS and Event Sourcing with .NET Core
7/19/2024 10:48:48 AM.
This article explores implementing CQRS (Command Query Responsibility Segregation) and Event Sourcing with .NET Core. It covers the basics of CQRS and Event Sourcing, including commands, queries, and
Master Global Exception Handling with IExceptionHandler in .NET
7/16/2024 5:44:17 AM.
Global exception handling in .NET with IExceptionHandler centralizes error management, ensuring consistent responses and improved logging. Our Global Exception Handler Middleware catches exceptions gl
CRUD Operations In Android SQLite - Kotlin
6/6/2024 11:48:36 AM.
Learn how to perform CRUD operations in SQLite using Kotlin for Android development. This tutorial guides you through creating a TODO application step by step, covering database setup, user interface
Introduction To MediatR Pattern
6/5/2024 11:08:55 AM.
MediatR pattern promotes loose coupling by facilitating in-process messaging, reducing dependencies between objects. It enables one-way broadcast communication, allowing objects to communicate solely
Creating Custom Tag In JSP
5/30/2024 10:28:48 AM.
Custom tags in JSP allow users to define reusable components that can be inserted directly into JSP pages, expanding functionality beyond built-in tags. Tags are implemented using tag handlers, define
How Do You Pass an Event Handler to a Component in ReactJS
5/21/2024 6:41:58 AM.
Passing event handlers to React components involves defining them in the parent, passing them as props to the child, and utilizing them in the child component's event listeners for interactive app
Exploring Delegating Handlers in C# .NET
5/19/2024 6:27:43 AM.
In modern software development, especially when dealing with web services, the ability to customize and extend HTTP request and response processing is crucial. This article delves into the concept of
Events in .NET
5/9/2024 11:52:53 AM.
An event is a message sent by an object to signal the occurrence of an action. This action caused by the user interaction such as button click, mouse click etc.
Implement Global Exception Handling In ASP.NET Core Application
4/29/2024 11:47:51 AM.
Explore ASP.NET Core's robust exception handling mechanisms, including global handlers and custom middleware. Learn to implement middleware for comprehensive error management, ensuring smooth appl
Event Handling In .NET
4/27/2024 4:15:10 AM.
Explore event handling in .NET, a fundamental aspect of event-driven programming. Learn about event handlers, delegates, and the EventSource class, diving into the publisher-subscriber pattern and bes
Explain about Event Handling in C# .Net
4/2/2024 4:20:04 AM.
In the world of C# programming, events are a powerful mechanism that facilitates communication between different components of an application. In this comprehensive guide, we'll delve deep into t
Routing In MVC with Code Example
4/1/2024 6:57:47 AM.
MVC applications rely on a routing system to handle URL requests, mapping them to controllers and actions. RouteConfig.cs defines routes, connected to Global.asax.cs. Routes can be added via RouteColl
Learn about Asynchronous Events in C#
3/20/2024 5:49:33 AM.
Explore asynchronous event invocation in C#, addressing threading challenges with event handlers. Learn about the synchronous nature of events, concurrency issues, and solutions using TPL and TAP. Id
Binding Event Handler And Method As Props In React
3/6/2024 10:40:52 AM.
Binding event handlers and methods as props in React involve passing functions from parent components to child components, ensuring proper binding to maintain the correct context. This pattern allows
Destructuring And Event Handler In React
3/5/2024 8:59:40 AM.
Destructuring in React allows efficient extraction of values from objects or arrays. Event handlers manage user interactions, like clicks or input changes. They're essential for interactive UIs in
Capturing and Modifying Sharepoint Alerts Through Alert Handlers
3/4/2024 11:50:51 AM.
Explore how to enhance SharePoint functionality by capturing and modifying alerts through alert handlers. Learn to customize alerts to meet specific needs, improving user experience and system efficie
Java Applet Design: File, Edit, and Search Options with ActionPerformed Functions
2/26/2024 6:00:39 AM.
Create an Applet with the menu bar and add the following menus: File, Edit and Search. Add default menu items to the respective menus. In the File menu, add the following items: New, Open, Save and Cl
How to Pass a Parameter to Event Handler or Callback in React.js
2/22/2024 11:13:06 AM.
In React, passing parameters to event handlers can be done using arrow functions or the bind method. Choose the approach that suits your project for optimal performance and readability.
Understanding Azure Event Grid
2/12/2024 6:01:32 AM.
Azure Event Grid is a fully managed event routing service that simplifies the development of event-driven applications. In this article, we'll explore the key concepts, features, and use cases of
IExceptionHandler in ASP.NET Core 8
2/7/2024 6:17:06 AM.
ASP.NET Core 8 introduces a new feature called IException Handler, providing a centralized way to handle exceptions in applications. This article explores what IExceptionHandler is and how to use it e
Extending HttpClient With Delegating Handlers in ASP.NET Core
1/17/2024 11:30:32 AM.
Explore the power of the HttpClient class in ASP.NET Core through Delegating Handlers. Learn to create a custom handler for logging HTTP requests and responses, enhancing HttpClient functionality with
HttpClientHandler in C#
1/2/2024 4:46:07 AM.
Unlock the potential of C#'s HttpClient class with HttpClientHandler. Delve into its capabilities—handling cookies, managing proxies, configuring SSL/TLS, timeouts, and more—to optimize and contro
Implementing Unit Test .Net Core Application Using CQRS Handler
12/15/2023 9:14:40 AM.
Unit testing Dot Net Core using CQRS Architecture. This article delves into testing .Net Core API projects using the XUnit testing framework. Demonstrating unit tests for a CQRS architecture, it cove
Mediator Design Pattern in ASP.NET Core Web API with 3-Tier Architecture
10/19/2023 5:10:38 AM.
The Mediator Design Pattern is a behavioral design pattern that defines an object that centralizes communication between a set of objects. It promotes loose coupling between components by preventing d
Create Your Own HttpHandler In C#
10/16/2023 5:05:36 AM.
The purpose of this article would be to implement HttpHandler in order to allow file download only by logged in users and stop for anyone else.
Implement Custom Image Handler In SPFx Rich Text Editor Using Angular 4
9/21/2023 7:22:47 AM.
Implementing custom image handler in the same, so you could be able to save the images uploaded in Rich Text Editor to the desired destination folder.
Using Microsoft Agent With C#
9/20/2023 6:37:49 AM.
This article explains how to include MS Agent into an simple Windows Form based application using C#.
Delegates in C#
9/5/2023 10:00:22 AM.
This article is introducing a new reference type, delegate. A delegate is a C# language element that allows programmers to reference a method for their development work.
Calling A .NET DLL Code On HTML File Using Microsoft .NET Handler And JSON
9/5/2023 9:26:14 AM.
The objective of this article is to explain how to use a .ashx handler to access the DLL or any server on an HTML page using JSON to make the server side/DB call very fast in a simple manner.
Calling the Server-Side Method Asynchronously From Client Script
8/23/2023 9:50:09 AM.
This article describes how to call the server-side method asynchronously from JavaScript with the use of Client Callbacks that is built in ASP.NET 2 so that the client browser receives the data dynami
Global Error Handling in Mule application
6/29/2023 9:06:57 AM.
In this article, we will learn about how to use a global error handler in Mule application.
Basic Internal Error Handlers in Mule application
6/27/2023 10:36:17 AM.
In this article, we will learn about some basic internal error handlers in Mule application.
Custom JWT Handler In ASP.Net Core 7 Web API
5/26/2023 10:50:50 AM.
In ASP.NET Core Web API, you can create a custom JWT (JSON Web Token) handler to handle token authentication and authorization. The custom handler lets you define your logic for validating and process
Generation of CAPTCHA Image Using Generic Handler for Login Page
1/27/2023 8:56:27 AM.
This article explains how to create a CAPTCHA image using a generic handler.
Error Handling With Angular
12/20/2022 11:47:10 AM.
In this article, you will learn about Error Handling with Angular.
Tutorial: Working with Toolbars in C#
8/25/2022 6:11:49 AM.
This tutorial explains you how to add toolbars to a form, load images to the toolbar buttons, and writing event handlers for toolbar buttons.
Add Root/Child Node to a TreeView Selected Node At Runtime and Rename the Selected Node
5/4/2022 10:02:48 AM.
This article will show how to add a Root Node & Child Node to a TreeView selected node at runtime & the user can rename the node by pressing the F2' key from the keyboard...
Event Handling in C#
3/31/2022 9:38:10 AM.
This article shows you how to write control, mouse, and keyboard event handlers in C#.
Developing Windows Applications
2/8/2022 10:01:06 AM.
This tutorial explains you step by step how to create your Windows Applications using Visual C#.
Introduction to Web Services
1/31/2022 11:25:19 AM.
A tutorial explains basics of web services followed by sample example.
Link Web Resource To A Form In Dynamics CRM
1/19/2022 1:57:48 PM.
In Dynamics 365 CRM, post creation of a web resource, to use it in CRM Form for a selected entity then we must add web resource into Form Libraries present at form level and then tie it to Event Handl
Tutorial : Creating Visual Studio Add-Ins
1/7/2022 9:03:21 AM.
In this example we'll create an add-in that allows you to insert a copyright statement at the top of your code window.
Event Handling in .NET using C#
11/16/2021 5:02:16 AM.
In this article I discuss the event handling model in .NET using C#. The discussion starts with an introduction to the concept of delegates and then it extends that concept to events and event handlin
Short Snippet For Image Handler in ASP.NET: Real World Scenario
6/8/2021 9:26:44 AM.
In this article, you will see how to bind an Image Handler in ASP.NET.
One-Time Event Handler in ASP.Net Using jQuery
5/31/2021 6:10:20 AM.
This article describes how to use the one-time event handler with the One() method of jQuery in the ASP.NET.
Few Important Uses of HttpModule: Part 1
5/26/2021 11:29:59 AM.
In this article, we will understand a few more concepts and uses of HttpModule.
Pass Data From HttpModule to HttpHandler in ASP.Net Application
5/26/2021 11:26:05 AM.
In this small article, we will learn to pass data from a HttpModule to a HttpHandler.
HttpHandler and HttpModule in Real Scenario: Few Examples of HttpHandler
5/14/2021 6:28:02 AM.
In this article, we will understand a few more scenarios where we can implement HttpHandler.
Working With Image in HttpHandler
5/3/2021 9:09:00 AM.
In this article, we will work with images in HttpHandler. Here we can get a few realy helpful information uses of HttpHandler.
Implement HttpHandler in ASP.Net Application
5/3/2021 8:51:04 AM.
In this article, we will understand a few more scenarios where we can implement HttpHandler in an ASP.NET application.
HttpHandler and HttpModule in Real Scenario: Getting Started With HttpHandler
4/23/2021 10:40:37 AM.
Here, we will understand a few scenarios where we can implement the concept of HttpHandler in our ASP.NET application.
Working With Header in HttpHandler
4/23/2021 9:23:51 AM.
In this article, we will learn to work with a header in a HTTP request and response message.
Uploading Multiple Files Using jQuery and Generic Handler in ASP.Net 4.5
4/22/2021 10:06:15 AM.
This article describes how to upload multiple files in ASP.NET Web Forms using the jQuery and Generic Handler.
HTTP Message Handler in Web API: Execution Flow of Custom Message Handler
3/17/2021 10:29:14 AM.
In this article, we will understand the execution flow of the message handler chain.
HTTP Message Handler in ASP.Net Web API
3/8/2021 5:16:47 AM.
This article defines the message handler that handles requests and responses.
HTTP Message Handler in Web API: Real Time Implementation of Message Handler
3/3/2021 5:42:16 AM.
In this article, we will see a few real-time applications with a custom HTTP Message Handler.
HTTP Message Handler in Web API: Implement Authentication Using Custom Message Handler
2/16/2021 4:40:09 AM.
In this article, we will implement an authentication process using a custom Message Handler.
HTTP Message Handler in Web API: Implement Server-Side Message Handler
2/1/2021 6:25:40 AM.
This article explains HTTP Message Handlers in the Web API and how to implement a Server-side Message Handler.
Create your first HTTP Handler in ASP.NET 3.5
1/15/2021 11:31:58 AM.
The HTTP handler is the most important ingredient while handling ASP.NET requests.
Implementing CQRS Pattern with Vue.js and ASP.NET Core MVC
1/6/2021 5:10:02 AM.
This article mainly focuses on the CQRS pattern, how we can implement CQRS Pattern using MediatR, and how to use the CQRS pattern with ASP.NET MVC Core and Vue.Js.
Working with DataTable Events in ADO.NET
10/30/2020 12:35:16 AM.
In this article I will explain working with DataTable Events in ADO.NET.
Working with DataSet Events in ADO.NET
10/29/2020 2:18:12 AM.
In this article I will explain working with DataSet Events in ADO.NET.
ActivityHandler helper class in Bot Framework - Python
7/28/2020 2:34:06 AM.
This video explains what is Activity,ActivityTypes and ActivityHandler in bot framework using Python.
JavaScript: Attach Generic Event Handler
5/24/2020 3:14:48 PM.
In this article you will learn about Attaching Generic Event Handler in JavaScript.
Printing a Ruler using C# and GDI+
5/21/2020 4:24:30 AM.
If you misplaced your ruler, here's an application that will create one for you on your printer!
Load XML File Data in DataGridView & Print DataGridView Data
5/21/2020 12:03:51 AM.
Using this article you can understand how to load the XML file's record into the DataGridView & then you can print that DataGridView.
Event Handlers in JavaScript
4/22/2020 2:43:31 PM.
Here I’ll try to provide the proper syntax of some event handlers.
Basics of Events in JavaScript
4/14/2020 3:28:40 PM.
Events refer to the actions taken by a programming language when you perform a specified task.
How to Bounce a Ball in Android
3/31/2020 2:30:02 AM.
In this Article you will learn about how to perform bounce activity on ball in Android using Android Studio
How to Set A Progress Bar in Android
3/23/2020 1:33:55 AM.
In this article I will tell you how to add a progress bar to an Android application.
Android Threads and Handlers
3/21/2020 7:39:21 AM.
This tutorial describes the usage of Threads and Handlers in an Android application. It also covers how to handle the application lifecycle together with threads.
Performing Update and Delete Operations in ASP.NET Core 3 Razor Pages Using Microsoft SQL Server
3/18/2020 12:44:49 AM.
In this article, you will learn how to perform update and delete operations in ASP.NET Core 3 Razor Pages using Microsoft SQL Server.
Comparison Of HttpHandler And HttpModule With Middleware
3/16/2020 12:42:06 PM.
This is a article on Comparison of HttpHandler and HttpModule in standard asp.net application with Middleware in asp.net core application
How To Use Handler In Android
3/16/2020 3:49:31 AM.
In this article you will learn how to use Handler in Android.
Bound Service Using Messenger In Android: Part Three
3/16/2020 2:26:27 AM.
This article illustrates the use of Messenger along with handlers to enable bidirectional communication between Service and Activity.
Policy-Based And Role-Based Authorization In ASP.NET Core 3.0 Using Custom Handler
2/5/2020 12:39:52 AM.
Authentication is the process of determining or giving an individual access to system or user based on their identity. This article demonstrates how to add custom Policy-based & Role-based Authori
HTTP Handlers And HTTP Modules In ASP.NET
1/6/2020 8:52:31 AM.
This article talks about the HTTP Modules and HTTP Handler in ASP.Net and their applications in real time.
HTML 5 Web Sockets
12/11/2019 11:41:15 PM.
HTML 5 introduced a new specification for Bi-Directional communication or Full Duplex connection between the server and the client
Cursor Move Ball in HTML5
12/5/2019 2:57:41 AM.
In this article we describe how create a cursor of a moving ball by using the canvas element of HTML5.
Using IOperationInvoker in WCF For Global Exception Handling and Logging
9/25/2019 1:22:12 AM.
In this article, we’ll discuss an Interceptor IOperationInvoker that can be used before and after activity when service actually calls it’s operations.
Exception Propagation in Java
9/24/2019 4:18:19 AM.
In this article we will explain the propagation of the exceptions following some basic examples for good learning.
Centralize Exception Handling in WCF: Part 10
9/12/2019 5:54:43 AM.
In this article, we will learn how to implement centralized exception handling in WCF using IErrorHandler interface.
Getting Started With Ansible - Part Ten (Handlers)
9/9/2019 2:43:31 PM.
This is in continuation to the articles of the series “Learning Ansible”.In this article we will be learning handlers.
Creating ‘mailto’ And ‘tel’ Link Handler
9/9/2019 2:38:05 PM.
Many business websites show their email addresses and phone numbers so their customers can contact them. In this lesson we will create wrapper classes around ‘mailto’ and ‘tel’ HTML links. Those class
What Is An ASHX File Handler Or Web Handler
5/31/2019 12:08:39 AM.
In this article you will get the knowledge about ASHX file Handler or web handler.
Space Invaders for C# and .NET
4/5/2019 4:16:59 AM.
In this article, we are going to see to develop games in C#. Here I am developing space invaders game in C# with spiraling bombs and a ship lives indicator.
Static Event In C#
2/24/2019 9:35:48 AM.
There might be times when you'll want your event to perform the same actions for all objects. In this article we will see how to do that.
Exception Handlers in C#
12/27/2018 3:48:37 AM.
In this article, I discuss what Exception Handlers are in C# and how to trap errors using try/catch blocks and their behavior when we use multiple catch statements to handle errors and finaly, how to
Count Image Requests from a Web Server using ASP.NET
11/15/2018 1:18:53 AM.
This article explains you how we can count Image request from a Web server using C# and ASP.NET.
Generic Error Logger using ASP.Net & C#
9/19/2018 2:06:42 AM.
In this article I just want to put some light on global.asax file & how we can make use of Application_Error. In this article, I am generating log text file which will have all the details of the