C# Corner
Tech
News
Videos
Forums
Trainings
Books
Live
More
Interviews
Events
Jobs
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]
Sourav Kayal(7)
Shivprasad (2)
Ashish Singhal(2)
Vijay Yadav(1)
Vipul Malhotra(1)
Rakesh (1)
Ramasagar Pulidindi(1)
Jean Paul(1)
Srihari Chinna(1)
Jigar Desai(1)
Resources
No resource found
The Two Interceptors: HttpModule and HttpHandlers
Dec 23, 2008.
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.
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.
Create Your Own HttpHandler In C#
Sep 26, 2015.
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.
Image Store and Retrieve From Database Using Generic Handler in ASP.Net
Jul 07, 2015.
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.
Few Important Uses of HttpModule: Part 1
Jan 28, 2014.
In this article, we will understand a few more concepts and uses of HttpModule.
Pass Data From HttpModule to HttpHandler in ASP.Net Application
Jan 27, 2014.
In this small article, we will learn to pass data from a HttpModule to a HttpHandler.
Working With Header in HttpHandler
Jan 23, 2014.
In this article, we will learn to work with a header in a HTTP request and response message.
Implement HttpHandler in ASP.Net Application
Jan 22, 2014.
In this article, we will understand a few more scenarios where we can implement HttpHandler in an ASP.NET application.
Working With Image in HttpHandler
Jan 22, 2014.
In this article, we will work with images in HttpHandler. Here we can get a few realy helpful information uses of HttpHandler.
HttpHandler and HttpModule in Real Scenario: Getting Started With HttpHandler
Jan 20, 2014.
Here, we will understand a few scenarios where we can implement the concept of HttpHandler in our ASP.NET application.
HttpHandler and HttpModule in Real Scenario: Few Examples of HttpHandler
Jan 20, 2014.
In this article, we will understand a few more scenarios where we can implement HttpHandler.
Improve Application Performance Using HTTP Handler
Dec 22, 2013.
This article explains how to improve application performance using HTTP Handlers and shows it with an example.
Advantage of HttpHandler - A Certificate example
Oct 13, 2010.
You are a developer at Cert19 University. The students that pass should be able to view their Certificates online.
Introduction to ASP.NET URL Rewriting with HttpHandler
Sep 06, 2010.
In this article you will learn how to use ASP.NET URL Rewriting with HttpHandler.
The 3 Musketeers: Model, View and Controller using HTTPHandler – Part 1
Dec 22, 2008.
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.
Count Image Requests from a Web Server using ASP.NET (VB.Net)
Mar 19, 2005.
This article explains you how we can count Image request from a Web server using VB.Net and ASP.NET.
Count Image Requests from a Web Server using ASP.NET
Mar 19, 2005.
This article explains you how we can count Image request from a Web server using C# and ASP.NET.
HTTP Handlers for Images in ASP.NET
Jun 23, 2003.
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?