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 HttpHandler
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 (7)
Ashish Singhal (2)
Shivprasad (2)
Vijay Yadav (1)
Vipul Malhotra (1)
Biswarup Kundu (1)
Rahul Sahay (1)
Rakesh (1)
Ramasagar Pulidindi (1)
Jean Paul (1)
Santhosh Kumar Jayaraman (1)
Srihari Chinna (1)
Jigar Desai (1)
Related resources for HttpHandler
No resource found
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
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.
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.
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
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.
MVC Life Cycle - Part 3
1/19/2016 9:34:19 AM.
In this article, we will continue from the previous point and delve further into MVC components.
Image Store and Retrieve From Database Using Generic Handler in ASP.Net
7/7/2015 3:54:40 PM.
We will see in this article how to store image file in a binary format and retrieve the file using HttpHandler and display it in a GridView Control.
The 3 Musketeers: Model, View and Controller using HTTPHandler – Part 1
9/5/2014 1:13:17 AM.
In this section, we will learn about the basics of MVC and then see how we can implement the same in ASP.NET using HttpHandlers.
Improve Application Performance Using HTTP Handler
12/22/2013 1:08:55 PM.
This article explains how to improve application performance using HTTP Handlers and shows it with an example.
Advantage of HttpHandler - A Certificate example
9/29/2012 5:13:32 AM.
You are a developer at Cert19 University. The students that pass should be able to view their Certificates online.
Previewing Image in ASP.NET Image Control
7/26/2012 2:20:51 PM.
In this article, let us see how to preview the uploaded image in ASP.NET before saving it to the database.
Count Image Requests from a Web Server using ASP.NET (VB.Net)
5/20/2012 1:13:18 AM.
This article explains you how we can count Image request from a Web server using VB.Net and ASP.NET.
Introduction to ASP.NET URL Rewriting with HttpHandler
9/7/2010 2:52:45 AM.
In this article you will learn how to use ASP.NET URL Rewriting with HttpHandler.
The Two Interceptors: HttpModule and HttpHandlers
5/26/2009 1:19:09 AM.
Many times we want to implement pre-processing logic before a request hits the IIS resources. For instance you would like to apply security mechanism, URL rewriting, filter something in the request, etc. ASP.NET has provided two types of interception HttpModule and HttpHandler.
HTTP Handlers for Images in ASP.NET
12/26/2005 3:51:11 AM.
Have you ever thought of streaming thumbnails just by passing query string indicating width or height of thumbnail you need, and most importantly passing those to image itself?