Skip to content

Instantly share code, notes, and snippets.

@robbiegod
Forked from moon-goon/genericIhttpHandler.ashx
Created February 23, 2016 18:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save robbiegod/beb8a552d1c9b7f935c0 to your computer and use it in GitHub Desktop.
Save robbiegod/beb8a552d1c9b7f935c0 to your computer and use it in GitHub Desktop.
<%@ WebHandler Language="C#" Debug="true" Class="name" %>
using System.Web;
public class name : IHttpHandler {
public void ProcessRequest (HttpContext context) {
}
public bool IsReusable {
get {
return false;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment