Link to home
Start Free TrialLog in
Avatar of Errol Farro
Errol FarroFlag for Aruba

asked on

View PDF document using Coldfusion

I have PDF documents stored on another server,not the coldfusion server but in the same network, which I would like to display.

The path name of the PDF files are stored in a database (e.g. O\:Engineering\TeamName\...\filename.pdf)

How can I view the content of the PDF using coldfusion ?
Avatar of Mark Ely
Mark Ely
Flag of United States of America image

Use an anchor tag with the href path.

eg..

<a href="files/FileNameOfPDF.pdf" target="_blank">Description for your pdf</a>
ASKER CERTIFIED SOLUTION
Avatar of Pravin Asar
Pravin Asar
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Glad to be of help.