up vote 6 down vote favorite
2
share [g+] share [fb]

I have an app that needs to read a PDF file from the file system and then write it out to the user. The PDF is 183KB and seems to work perfectly. When I use the code at the bottom the browser gets a file 224KB and I get a message from Acrobat Reader saying the file is damaged and cannot be repaired.

Here is my code (I've also tried using File.ReadAllBytes(), but I get the same thing):

using (FileStream fs = File.OpenRead(path))
    		{
    			int length = (int)fs.Length;
    			byte[] buffer;

    			using (BinaryReader br = new BinaryReader(fs))
    			{
    				buffer = br.ReadBytes(length);
    			}

    			Response.Clear();
    			Response.Buffer = true;
    			Response.AddHeader("content-disposition", String.Format("attachment;filename={0}", Path.GetFileName(path)));
    			Response.ContentType = "application/" + Path.GetExtension(path).Substring(1);
    			Response.BinaryWrite(buffer);
    		}
link|improve this question

71% accept rate
Are you seeing 224KB in the code sample you provided (fs.Length), or at the other end when you read this back in? – Jon B May 11 '09 at 15:38
After I get the file back I checked the size, I was forgetting to put a Response.End() on there as pointed out by BarneyHDog. – jhunter May 12 '09 at 19:35
feedback

7 Answers

up vote 5 down vote accepted

Try adding

Response.End();

after the call to Response.BinaryWrite().

You may inadvertently be sending other content back after Response.BinaryWrite which may confuse the browser. Response.End will ensure that that the browser only gets what you really intend.

link|improve this answer
feedback
        Response.BinaryWrite(bytes);
        Response.Flush();
        Response.Close();
        Response.End();

This works for us. We create PDFs from SQL Reporting Services.

link|improve this answer
feedback

Since you're sending the file directly from your filesystem with no intermediate processing, why not use Response.TransmitFile instead?

Response.Clear();
Response.ContentType = "application/pdf";
Response.AddHeader("Content-Disposition",
    "attachment; filename=\"" + Path.GetFileName(path) + "\"");
Response.TransmitFile(path);
Response.End();

(I suspect that your problem is caused by a missing Response.End, meaning that you're sending the rest of your page's content appended to the PDF data.)

link|improve this answer
feedback

We've used this with a lot of success. WriteFile do to the download for you and a Flush / End at the end to send it all to the client.

            //Use these headers to display a saves as / download
            //Response.ContentType = "application/octet-stream";
            //Response.AddHeader("Content-Disposition", String.Format("attachment; filename={0}.pdf", Path.GetFileName(Path)));

            Response.ContentType = "application/pdf";
            Response.AddHeader("Content-Disposition", String.Format("inline; filename={0}.pdf", Path.GetFileName(Path)));

            Response.WriteFile(path);
            Response.Flush();
            Response.End();
link|improve this answer
feedback

Maybe you are missing a Response.close to close de Binary Stream

link|improve this answer
feedback

In addition to Igor's Response.Close(), I would add a Response.Flush().

link|improve this answer
feedback

Please read this before using Response.TransmitFile: http://improve.dk/blog/2008/03/29/response-transmitfile-close-will-kill-your-application

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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