| Add a header and footer control to all pages using http module |
| The Code Project |
| Use the http module to automatically add a header and footer control to all ASP.NET pages |
|
| Audio-Video Module for ASP.net Community Starter K |
| http://www.paul-abraham.com/ |
| Audio-Video Module for ASP.net Community Starter K |
|
| Build Your ASP.NET Pages on a Richer Bedrock |
| MSDN |
| Build a base class to share functionality across all your ASP.NET 1.1 pages. |
|
| Chameleon: A complete URL Rewriting framework |
| The Code Project |
| This framework allows for seperation of code and url's for a website. The url's can be specified in a xml configuration file and allow mapping to user controls. |
|
| Creating HttpHandlers and HttpModules |
| Bipin Joshi |
| Http handlers are special applications that typically handle files with certain extension. For example when you request a file with extension .asp IIS routes it to ASP processor. But what if I want to handle files with my own extensions say .bipin? Http handlers allow us to do just that. Now, you might be thinking what is the use of a new file extension? Consider a case where you want to generate graphics on the fly. In such cases you will write an Http handler that will do your task. Note that Http handlers are typically called for the specific file extensions they are designed for. If you have worked with ISAPI extensions in past you will find this concept very familiar. |
|
| Creating multilingual websites - Part 2 |
| The Code Project |
| Creating multilingual websites - Part 2 |
|
| Declarative ASP.NET globalization |
| The Code Project |
| An article on how to implement globalization support for ASP.NET pages through attributes and reflection |
|
| DotNetNuke URL Rewriting HTTP Module |
| The Code Project |
| Always maps your static links to the appropriate Tab ID |
|
| FIX: When You Call the Response.ClearHeaders Method in a Custom HTTPmodule, Extra Characters Are Appended to the Output |
| http://www.kbalertz.com/ |
| (812686) - When you call the Response.ClearHeaders method in a custom HTTPModule that is registered with PreSendRequestHeaders, extra characters are returned. This problem occurs only on the first request or the first time that you make this call after you... |
|
| HOW TO: Create an ASP.NET HTTP Module Using Visual C# .NET (Q307996) |
| Microsoft Support |
| This step-by-step article demonstrates how to use Visual C# .NET to create a simple, custom HTTP module. This article demonstrates how to create, deploy, and configure the module, as well as how to hook up an event for the module in the Global.asax file. |
|
| HTTP Handlers and HTTP Modules |
| 15 Seconds |
| Using HTTP handlers and modules. |
|
| HTTP Modules |
| MSDN |
| One of ASP.NET's most useful features is the extensibility of the HTTP pipeline, the path that data takes between client and server. This month I'm going to take a look at HTTP modules in ASP.NET. You can use them to extend your ASP.NET applications by adding pre- and post-processing to each HTTP request coming into your application. For example, if you wanted custom authentication facilities for your application, the best technique would be to intercept the request when it comes in and process the request in a custom HTTP module. |
|
| URL Rewriting in ASP.NET |
| MSDN |
| Scott Mitchell shows how you can dynamically intercept an incoming Web request and automatically redirect it to a different URL. |
|