Things I Learned Today
"You learn something new every day"... I decided to keep track.
Showing posts with label
PDF
.
Show all posts
Showing posts with label
PDF
.
Show all posts
Saturday, September 18, 2010
How to return a pdf file in MVC (instead of preview by browser)
public
ActionResult
GetPDF(
string
filename)
{
return
File(filename,
"application/pdf"
, Server.HtmlEncode(filename));
}
Home
Subscribe to:
Posts (Atom)