Skip to content

Instantly share code, notes, and snippets.

@RazorAnt
Created November 2, 2012 02:40
Show Gist options
  • Save RazorAnt/3998354 to your computer and use it in GitHub Desktop.
Save RazorAnt/3998354 to your computer and use it in GitHub Desktop.
RazorPDF View to Pdf or Html
public ActionResult Something()
{
// Get model
var list = repository.GetStuff();
// Output to Pdf?
if (Request.QueryString["format"] == "pdf")
return new PdfResult(list, "Something");
return View(list);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment