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(8)
Vijay Yadav(1)
Debasis Saha(1)
Ashish Shukla(1)
Shivprasad (1)
Jigar Desai(1)
Paul Abraham(1)
Resources
No resource found
HttpModule in Real Scenario: Events in HttpModules
Jan 27, 2014.
In this article, we will talk about various events and their execution sequence in an ASP.NET application.
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.
Learn Angular 8 Step By Step In 10 Days - HttpClient Or Ajax Call (Day 9)
Dec 23, 2019.
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
Jan 28, 2014.
In this article, we will understand a few more concepts and uses of HttpModule.
Few Important Uses of HttpModule: Part 2
Jan 28, 2014.
In this example, we will measure the time taken by one HTTP request to complete.
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.
HttpModule in Real Scenario: Implement Simple HttpModule
Jan 26, 2014.
The purpose of this article is to understand the use of HttpHandler and HttpModule in real time software development.
HttpModule in Real Scenario: Multiple HttpModule and Communication
Jan 26, 2014.
From this article we will understand the use of HttpHandler and HttpModule in real time software development.
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.
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.
HTTP Requests in ASP.NET
Dec 21, 2011.
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.
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.
Compress Web Pages using .NET 2.0 Compression Library
Oct 08, 2007.
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
Jan 16, 2003.
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.