I've worked on a requirement that allows me to show a PDF file inside a browser by doingo a Response.ContentType = "application/pdf".

The problem is that the default view of the PDF is always showing the bookmarks menu at the left, is there a way by using HTTP headers or something to tell the PDF viewer not to show the bookmarks section?

Thanks in advance.

link|improve this question

44% accept rate
feedback

2 Answers

There's two ways that you can do it. The way that I would recommend is to actually open the PDF in Adobe Acrobat and go to File, Properties. On the Initial View tab you'll see a lot of options for how to display the PDF. The second way I haven't tested but Adobe says you can pass various querystring options to the PDF. The one you'd probably want is ?pagemode=none

link|improve this answer
pagemode was what I wanted but for some reason the querystring is not being read, anyways I ended up using PdfSharp in order to set this property and then save the output to the outputStream of the ActionResult. – Paleta Sep 12 '11 at 17:12
feedback

The way how a PDF document is displayed can be configured inside the PDF document.

There are a lot of PDF editors that can modify the "viewer preferences" as it is mostly called. One free example is BeCyPDFMetaEdit.

link|improve this answer
Ah, beat me! I didn't see the notification until right as I hit submit! – Chris Haas Sep 8 '11 at 18:25
feedback

Your Answer

 
or
required, but never shown

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