Home ASP.NET Custom Handlers

ASP.NET - Custom Handlers



After completing this tutorial, you will be able to
  • Recognize the role of custom handlers in ASP.NET
  • Write custom binary handlers
  • Write just-in-time compiled custom handlers
  • Let IIS and ASP.NET know about your custom handler
This tutorial covers writing custom HTTP handlers. In Tutorial 2 we saw the ASP.NET pipeline. Remember that the endpoint of all requests handled by ASP.NET is always an implementation of IHttpHandler.

Next