class ImageManager : IHttpHandler
{
public void Process(HttpContext context)
{
var something = context.Request.QueryString["key"];
var image = new Image();
image.Load(...);
context.Response.ContentType = "image/jpg";
context.Response.WriteBinary(image.ToBinary());
}
IsReusable { get { return false; } }
}