Advertisement
Guest User

Untitled

a guest
Apr 27th, 2015
206
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.13 KB | None | 0 0
  1. public ActionResult DownloadPDF(int id)
  2. {
  3. byte[] pdffile = [your file];
  4. return File(pdffile, "application/pdf");
  5. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement