Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In my application, I want show a printable PDF acrobat file with in the browser or outside the browser other than saving. In Firefox by default it will ask for save or open, I don't need that dialogue. I want to show that file preferably outside the browser. Can you please suggest me.

Thanks,
Vara Kumar.PJD

share|improve this question

2 Answers

up vote 4 down vote accepted

You can suggest to the browser that it should show the PDF in a window rather than offering to download it via the Content-Disposition header:

response.addHeader("Content-Disposition", "inline");

The "inline" value suggests that the content be rendered inline (as opposed to the "attachment" value suggesting the browser offer to download it).

Once you've made the suggestion to the browser, the browser may or may not accept your suggestion, depending on its implementation and possibly its user preferences.

share|improve this answer
Sorry T.J. Crowder I am not getting any positive result with that content-disposition inline – varakumar.pjd Feb 2 '11 at 10:42
@varakumar.pjd: Sorry to hear that. V. strange. It works for me in a very similar use-case. I have an application where sometimes I want to open a new window containing the PDF, and other times I want the browser to download the PDF. I have a link to a page that generates the PDF, and I have a target attribute set to _blank. I successfully use that header to control what happens when the user clicks the link. With standard IE6, IE7, Firefox, and Chrome settings it seems to work. – T.J. Crowder Feb 2 '11 at 10:49
Can you tell me the meaning of Content-Disposition because I don't know about it – varakumar.pjd Feb 2 '11 at 11:00
2  
@varakumar.pjd: StackOverflow really needs to underline links, the words "Content-Disposition header" in my answer are a link to the RFC for it, which explain it in full detail. Basically, what it means is, "here's what you should do with this content I'm sending you." – T.J. Crowder Feb 2 '11 at 11:52
Hay, T.J.Crowder that "Content-Disposition", "inline" is working fine but how to set my own name to that PDF file. I written as "Content-Disposition", "inline; Filename="+getFileName() but it is not working in firefox but it is working in IE. – varakumar.pjd Feb 5 '11 at 5:57
show 1 more comment

I don't think this is something you can control from your app, i think this is the matter of environment/browser/plugins that users are using... but zou can open new window for your pdf by javascript like this link

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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