C# Corner
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
C# Corner
TECHNOLOGIES
ANSWERS
BLOGS
VIDEOS
INTERVIEWS
BOOKS
NEWS
CHAPTERS
CAREER
Jobs
IDEAS
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)
Ashish Shukla (1)
Srihari Chinna (1)
Shivprasad (1)
Jigar Desai (1)
Paul Abraham (1)
Related resources for ttpmodule
No resource found
Few Important Uses of HttpModule: Part 2
1/29/2014 8:48:29 AM.
In this example we will measure the time taken by one HTTP request to complete.
Few Important Uses of HttpModule: Part 1
1/28/2014 11:29:56 PM.
In this article we will understand a few more concepts and uses of HttpModule.
Pass Data From HttpModule to HttpHandler in ASP.Net Application
1/28/2014 12:06:05 PM.
In this small article we will learn to pass data from a HttpModule to a HttpHandler.
HttpModule in Real Scenario: Events in HttpModules
1/28/2014 11:48:14 AM.
In this article we will talk about various events and their execution sequence in an ASP.NET application.
HttpModule in Real Scenario: Multiple HttpModule and Communication
1/27/2014 12:44:55 AM.
From this article we will understand the use of HttpHandler and HttpModule in real time software development.
HttpModule in Real Scenario: Implement Simple HttpModule
1/26/2014 1:32:33 PM.
The purpose of this article is to understand the use of HttpHandler and HttpModule in real time software development.
HttpHandler and HttpModule in Real Scenario: Few Examples of HttpHandler
1/21/2014 9:48:10 PM.
In this article we will understand a few more scenarios where we can implement HttpHandler.
HttpHandler and HttpModule in Real Scenario: Getting Started With HttpHandler
1/20/2014 5:00:03 PM.
Here, we will understand a few scenarios where we can implement the concept of HttpHandler in our ASP.NET 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.