Αναζήτηση στην υποστήριξη

Προσοχή στις απάτες! Δεν θα σας ζητήσουμε ποτέ να καλέσετε ή να στείλετε μήνυμα σε κάποιον αριθμό τηλεφώνου ή να μοιραστείτε προσωπικά δεδομένα. Αναφέρετε τυχόν ύποπτη δραστηριότητα μέσω της επιλογής «Αναφορά κατάχρησης».

Learn More

Is there a way to display PDF file on firefox without the file getting downloaded?

  • 4 απαντήσεις
  • 3 έχουν αυτό το πρόβλημα
  • 867 προβολές
  • Τελευταία απάντηση από Supriya_YD

more options

Hi,

I am using an iframe to render a PDF file on firefox. The file gets downloaded in C:\Users\xxx\AppData\Local\Temp folder and the downloaded file is opened by the PDF reader and is not visible inside the browser window.

Is there any way to restrict the file from being opened by PDF reader and to show it in the browser window itself (the way its is displayed on chrome browser) ?

I am using below code to render in browser: <iframe style="margin-top:10px;" src="' + ArtifactfilePath + '#toolbar=0" width="100%" height="100%" id="iFramePdf" #zoom="200" frameborder="1"></iframe>

ArtifactfilePath is the filepath.

Hi, I am using an iframe to render a PDF file on firefox. The file gets downloaded in C:\Users\xxx\AppData\Local\Temp folder and the downloaded file is opened by the PDF reader and is not visible inside the browser window. Is there any way to restrict the file from being opened by PDF reader and to show it in the browser window itself (the way its is displayed on chrome browser) ? I am using below code to render in browser: <iframe style="margin-top:10px;" src="' + ArtifactfilePath + '#toolbar=0" width="100%" height="100%" id="iFramePdf" #zoom="200" frameborder="1"></iframe> ArtifactfilePath is the filepath.

Επιλεγμένη λύση

That is not possible, only when the builtin Firefox PDF Viewer is used then the file won't be downloaded to the temp folder (but will still be downloaded and stored in the cache). Files that are passed to an external application are always saved to the temp folder.

Ανάγνωση απάντησης σε πλαίσιο 👍 2

Όλες οι απαντήσεις (4)

more options

Firefox opens a PDF file in a tab only if the server sends this file as application/pdf. Any other type or a generic type will Firefox show the download (open with) dialog.


more options

Hello,

Thanks for your reply.

My doubt is not yet resolved :(

How can we block the PDF from being downloaded in tmp file?

more options

Επιλεγμένη λύση

That is not possible, only when the builtin Firefox PDF Viewer is used then the file won't be downloaded to the temp folder (but will still be downloaded and stored in the cache). Files that are passed to an external application are always saved to the temp folder.

more options

Thank you! My query is resolved.