>>What is the work around for this? I used the following trick in a similar situation: Store the file as .cfm instead of pdf in a special directory, say documents/myDocument.cfm. In the same directory, add an Application.cfm file which contains something like: <H1>Error 404</H1> page not found <CFABORT>
Finally, in the downloads page, use the code: <cfheader name="Content-Disposition" value="attachment; filename="myDocument.pdf""> <CFCONTENT TYPE="application/pdf" FILE="documents/myDocument.cfm"> This will make the file look as a pdf file again. You can also use TYPE="application/octet-stream" and let the user chose if he wants to view or store the file. -- _______________________________________ REUSE CODE! Use custom tags; See http://www.contentbox.com/claude/customtags/tagstore.cfm (Please send any spam to this address: [EMAIL PROTECTED]) Thanks. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Discover CFTicket - The leading ColdFusion Help Desk and Trouble Ticket application http://www.houseoffusion.com/banners/view.cfm?bannerid=48 Message: http://www.houseoffusion.com/lists.cfm/link=i:4:195524 Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4 Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4 Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4 Donations & Support: http://www.houseoffusion.com/tiny.cfm/54

