HttpHandler Serving an Image
File: Handler.ashx
<%@ WebHandler Language="C#" Class="Handler" %>
using System;
using System.Web;
public class Handler : IHttpHandler {
public void ProcessRequest (HttpContext context) {
context.Response.ContentType = "image/jpeg"
context.Response.WriteFile("Sunset.jpg")
}
public bool IsReusable {
get {
return false;
}
}
}