I have a link in my page :
<a href="sharedfiles/general.pdf"> View PDF</a>
The problem is that when the link is clicked, Instead of viewing the content of the file in the browser, the file is dow开发者_运维百科nloaded .
Any ideas what's wrong?
ps : I have Mozilla FireFox 3.6 & Adobe Reader Installed
Make sure you use the correct mime type (application/pdf), and the Content-Disposition: inline
header.
Check your webserver is providing the correct MIME type for the response - it should be application/pdf
精彩评论