vote up 1 vote down star

I'm looking for a way to stream a pdf from my server to the browser using .NET 2.0 (in binary).

Edit: I'm trying to grab an existing pdf from a server path and push that up as binary to the browser.

flag

77% accept rate
How is this different than just dropping the PDF on the server and having it served via URL? Is this a dynamically generated PDF? – spoon16 Sep 17 '08 at 16:26

5 Answers

vote up 3 vote down check

Here you go: How To Write Binary Files to the Browser Using ASP.NET and Visual C# .NET

link|flag
vote up 2 vote down
  1. Set Content-Type: Response.ContentType = "application/pdf"
  2. Set ContentDisposition, if you want to give a new name for the file: Response.Headers.Add("Content-Disposition", "attachement: filename=file.pdf");
  3. Write the content, using Response.OutputStream as Mr. Kopp said.

Step 2 is not strictly necessary, but it's probably a good idea if you don't want the browser to try to save the PDF with the same name as your ASPX file.

link|flag
vote up 0 vote down

You can just setup a handler or a page that set's the correct response type and output the pdf to the response output buffer.

link|flag
vote up 0 vote down

Is this an existing PDF file stored on the server's filesystem or are you trying to generate one on-the-fly?

link|flag
vote up 1 vote down

write the binary to the output stream. Response.OutputStream. then just add the header Content-Disposition header.

link|flag

Your Answer

Get an OpenID
or

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