I have filecontentresult from controller action method as shown ,contents is byte[] type

FileContentResult file= new FileContentResult(contents, "/PDF");
              Response.AppendHeader("Content-Disposition", "inline; filename=" + filename);
                return file;

now, if the file type is known as pdf and specified, why is not directly opening in adobe reader and prompting window to openwith /saveas. If my filecontentresult passes pdf i want it to open without window propmt. how can it be done? Also the above code only prompting window in mozilla, In IE no prompt or opening.

thanks,
michaeld

link|improve this question

45% accept rate
1  
this is not an mvc issue, this is a browser issue and how it manages pdf's (maybe it doesn't support the PDF browser-plugin) – Vasea Jul 27 '11 at 8:55
ok, i have edited the tags. thank you – michael Jul 27 '11 at 9:14
feedback

1 Answer

The trick is in content type, you've set it worng. If browser knows how to handle that content type it will open it:

    public ActionResult GetPDF()
    {
        var path = @"C:\Test\Testing.pdf";
        var contents = System.IO.File.ReadAllBytes(path);

        return File(contents, "application/pdf");
    }
link|improve this answer
do you want me to change my returntype FilecontentResult to actionresult and return File to view? – michael Jul 28 '11 at 6:02
Change the content type form "/PDF" to "application/pdf" – frennky Jul 28 '11 at 8:04
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.