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 ttpmodule
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 (8)
Vijay Yadav (1)
Debasis Saha (1)
Biswarup Kundu (1)
Ashish Shukla (1)
Srihari Chinna (1)
Shivprasad (1)
Jigar Desai (1)
Paul Abraham (1)
Related resources for ttpmodule
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
Learn Angular 8 Step By Step In 10 Days - HttpClient Or Ajax Call (Day 9)
11/30/2022 3:26:30 AM.
In this article series, we will discuss a different aspect of Angular 8 for all types of users. We will discuss how to handle HttpClient modules in this article.
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.
HttpModule in Real Scenario: Multiple HttpModule and Communication
5/26/2021 11:22:55 AM.
From this article we will understand the use of HttpHandler and HttpModule in real time software development.
Few Important Uses of HttpModule: Part 2
5/26/2021 11:17:56 AM.
In this example, we will measure the time taken by one HTTP request to complete.
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.
HttpModule in Real Scenario: Events in HttpModules
5/14/2021 5:52:08 AM.
In this article, we will talk about various events and their execution sequence 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.
HttpModule in Real Scenario: Implement Simple HttpModule
4/13/2021 6:56:44 AM.
The purpose of this article is to understand the use of HttpHandler and HttpModule in real time software development.
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
HTTP Requests in ASP.NET
12/23/2011 9:19:10 AM.
In ASP.NET to process requests a pipeline model is used which consists of HTTPModules and HTTPHnadler objects. This pipeline model forms the low level framework which is used by web pages and web services. Here we will see high level overview of asp.net request processing.
HTTP Modules in ASP.NET Request life cycle
8/20/2010 2:48:11 AM.
HTTP module is a .NET Framework class that implements the IHttpModule interface, they called as ISAPI filter in IIS stack so modules are counterpart in ASP.NET, have ability to intercept and handle system events and other modules events.
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.
Compress Web Pages using .NET 2.0 Compression Library
10/10/2007 8:03:35 AM.
This article explains how to create very simple HttpModule to compress your dynamic content using compression library (System.IO.Compression) available in .NET 2.0?
Designing and Implementing a Versatile Data Access Tier
3/29/2006 3:35:09 AM.
In this tutorial, we will drill down deeper in to the design of a n-tier architecture and our focus will be on the data access tier(DAT). Our goal is to design and implement an appropriate data access tier(DAT) for scalable, reliable and interoperable web application.