how does one control the default filename when forcing a file download?
I'm running CF9 64bit enterprise using IIS6 and windows server 2003.
I've written a dropbox program that allows users to upload/download files to/from a dropbox folder on the server.
I force a download dialog box with
<cfcontent
type="application/x-download"
file = "some filename in the dropbox folder">
The dialog box opens but the default download name is the name of my cfm file ('dropbox-download.cfm'), not the the name of the requested file.
The download works but unless the user explicitly renames the file before saving, the application will save the file on their local machine as 'dropbox-download.cfm'.
How does one default the, 'dialog box save as name', to be the actual name of the requested file?
