|
|
| IHttpHandler [+] Favor-It | |
| |
 |
| | Sort By:
|
While reading a chapter from the upcoming book from Addison-Wesley entitled Essential ASP.NET with Examples in C#, I ran across a chapter on creating custom http handlers in .NET. The author (Fritz Onion) did a great job of explaining... Author: Robbe D. Morris Code: ASP.NET v1.0 & C# |
This article looks at ASP.NET's connection model & how to write custom HTTP handler/response objects for ASP.NET. When it comes right down to it, the server really just receives client requests and responds to them appropriately using HTTP. Author: George Shepherd Code: ASP.NET Beta 1 & VB |
A class implementing IHttpHandler for use in custom controls, to send embedded resources such as scripts, images, and style sheets to the client. Author: Eric Woodruff Code: ASP.NET v1.1 & C# |
|  | |
ASP.NET provides a low-level request/response API that enables developers to use .NET Framework classes to service incoming HTTP requests. Developers accomplish this by authoring classes that support... Author: GotDotNet Code: ASP.NET Beta 1 & VB |
The IHttpHandler Interface defines the contract that ASP.NET implements to synchronously process HTTP Web requests using custom HTTP handlers. Author: rvnuñez Code: ASP.NET v1.0 & VB |
HttpHandlers make it easy to handle certain file types with a simple interface that anyone can write code for. A handler can stop the bandwidth leeching of your images, often appearing embedded in other site's forums. Author: Jeff Putz Code: ASP.NET v1.1 |
|  | |
ASP.NET offers very easy yet powerful way to handle and filter web requests
via HttpHandlers and HttpModules. This article tells you the difference
between the two and shows you how to create them.
Author: Bipin Joshi Code: ASP.NET Beta 2 & VB |
Icon Key >
 - Recently Updated
 - Showcase Listing
|