vote up 2 vote down star
1

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);
    		}
flag

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 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 at 19:35

6 Answers

vote up 2 vote down check

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|flag
vote up 1 vote down

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|flag
vote up 1 vote down
        Response.BinaryWrite(bytes);
        Response.Flush();
        Response.Close();
        Response.End();

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

link|flag
vote up 1 vote down

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|flag
vote up 0 vote down

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

link|flag
vote up 0 vote down

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

link|flag

Your Answer

Get an OpenID
or

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