Skip to content

Instantly share code, notes, and snippets.

@jbogard
Created February 4, 2014 13:56
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save jbogard/8803982 to your computer and use it in GitHub Desktop.
Save jbogard/8803982 to your computer and use it in GitHub Desktop.
public class PdfModule : IHttpModule
{
public void Init(HttpApplication context)
{
context.PreRequestHandlerExecute += context_BeginRequest;
}
private void context_BeginRequest(object sender, EventArgs e)
{
var httpApplication = (HttpApplication) sender;
if (httpApplication.Request.Params["Pdf"] == null)
return;
httpApplication.Response.Clear();
httpApplication.Response.AddHeader("Content-Type", "application/pdf");
var baseUrl = string.Format("{0}://{1}{2}/", httpApplication.Request.Url.Scheme,
httpApplication.Request.Url.Authority, httpApplication.Request.ApplicationPath.TrimEnd('/'));
httpApplication.Response.Filter = new PdfFilter(httpApplication.Response.Filter, baseUrl);
}
public void Dispose()
{
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment