Create a class that implements the IHttpHandler interface.
Place this class in the App_Code directory.
using System;
using System.Web;
namespace HttpExtensions
{
public class SimpleHandler : IHttpHandler
{
public void ProcessRequest(System.Web.HttpContext context)
{
HttpResponse response = context.Response;
response.Write("Rendered by the SimpleHandler") ;
response.Write("
") ;
}
public bool IsReusable
{
get {return true;}
}
}
}
Configuring a Custom HTTP Handler