Possible Duplicate:
“name” web pdf for better default save filename in Acrobat?
I have a jsp application that is producing a PDF file and displaying inline in the browser. I would like to set the name of the file so when the user chooses to save the pdf in the browser it is defaulted to something meaningful. Currently the 'Save As' dialog defaults to the name of the servlet.
I have tried the following:-
response.setHeader( "Content-disposition", "attachment; filename=\""+fileName+".pdf\"");
response.setHeader( "Content-disposition", "inline; filename=\""+fileName+".pdf\"");
This first line works but doesn't show inline. The second line shows the pdf inline but when choosing the save pdf option in Acrobat Reader within the browser it still shows the servlet name.
Is there anyway to do this when showing inline initially? Any help appreciated!
