${res:Templates.File.WebHandler.Description}
/// Description of ${ClassName}
///
public class ${ClassName} : IHttpHandler
{
//<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
#region Process Request
public void ProcessRequest(HttpContext context)
{
context.Response.ContentType = "text/plain";
context.Response.Write(@"Hello #Develop.");
context.Response.Flush();
context.Response.Close();
}
#endregion
//<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
public bool IsReusable
{
get { return true; }
}
}
}
]]>
]]>