Mega Code Archive

 
Categories / ASP.Net Tutorial / Development
 

The IHttpHandler page template (C#)

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 = "text/plain";         context.Response.Write("Hello World");     }       public bool IsReusable {         get {             return false;         }     } }