RE: File download not working

2008-03-14 Thread Dave
To: CF-Talk Subject: Re: File download not working Did you recently turn off caching in IE, or do you prevent caching in the page higher up (with no-cache headers etc)? On Fri, Mar 14, 2008 at 6:01 AM, Dave [EMAIL PROTECTED] wrote: I'd seen the content-description in a few examples

Re: File download not working

2008-03-13 Thread Jochem van Dieten
Dave wrote: ...cannot download DownloadUserInfo.cfm...site is either unavailable or cannot be found cfset myFile = #fromdir# txtfiles.aes cfheader name=Content-Disposition value=attachment:filename=txtfiles.aes cfheader name=Content-Description value=User Info File cfcontent

RE: File download not working

2008-03-13 Thread Dave
not IE7. -Original Message- From: Jochem van Dieten [mailto:[EMAIL PROTECTED] Sent: Thursday, March 13, 2008 3:43 PM To: CF-Talk Subject: Re: File download not working Dave wrote: ...cannot download DownloadUserInfo.cfm...site is either unavailable or cannot be found

Re: File download not working

2008-03-13 Thread James Holmes
Did you recently turn off caching in IE, or do you prevent caching in the page higher up (with no-cache headers etc)? On Fri, Mar 14, 2008 at 6:01 AM, Dave [EMAIL PROTECTED] wrote: I'd seen the content-description in a few examples figured I'd give it a try. I've also see the attachment

RE: file download in cfm file

2007-02-14 Thread Ben Nadel
When you say it won't work on the server... Do you mean from an external location? Or are you using localhost or something on the live server? .. Ben Nadel Certified Advanced ColdFusion MX7 Developer www.bennadel.com Need ColdFusion Help? www.bennadel.com/ask-ben/

Re: file download in cfm file

2007-02-14 Thread Claude Schneegans
It works on my local machine but won't work on the server(Windows 2003, with IIS 6) Make sure your IIS is configurated to handle .pdf files. -- ___ REUSE CODE! Use custom tags; See http://www.contentbox.com/claude/customtags/tagstore.cfm (Please send any

Re: File Download Manager

2006-03-29 Thread Alan Rother
I don't think you are going to be able to find a CF based soltuion for the download manager. I have seen some executable soultions for what you are proposing, in Java or different flavors of C, but these programs need to be rrunning on the end users computer for them to work. Since CF is a server

Re: file download bug with Netscape 7

2002-12-16 Thread Bryan Stevenson
Thanks Phil...that's going to help me for sure ;-) Bryan Stevenson B.Comm. VP Director of E-Commerce Development Electric Edge Systems Group Inc. t. 250.920.8830 e. [EMAIL PROTECTED] - Macromedia Associate Partner www.macromedia.com

Re: File Download

2001-04-13 Thread Tim Painter
Create a link to a .cfm page that uses the cfcontent tag to download the file. e.g a href="download.cfm/filename.ext/?file=Filename.ext"Click here to download the file/a (put the filename.ext after the link to the .cfm -- this will make the browser default to the actual filename as opposed to

Re: File Download

2001-04-13 Thread Tony Schreiber
Or for an even neater URL... A HREF="download.cfm/filename.ext"Download/A download.cfm CFCONTENT type="unknown" file="c:\Directory\#ListLast(CGI.REQUEST_URI,'\')#" deletefile="No" Create a link to a .cfm page that uses the cfcontent tag to download the file. e.g a

Re: File Download

2001-04-13 Thread W. Shannon Carr
Thank you for your help. I wasn't aware of the cfcontent tag but will be sure to add a new snippet. Thanks again, Shannon - Original Message - From: "Tim Painter" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Friday, April 13, 2001 10:57 AM Subjec

RE: File Download

2000-12-28 Thread Simon Horwith
you're downloading a file that your browser doesn't recognize. Just HREF an exe or zip file and see what happens. ~Simon Simon Horwith Allaire Certified ColdFusion Instructor Certified ColdFusion Developer Fig Leaf Software 1400 16th St NW, # 220 Washington DC 20036 202.797.6570 (direct

RE: File Download

2000-12-28 Thread Chad Gray
DUH! I knew it was going to be a simple answer need more coffee, more coffee! :) Thanks! At 10:54 AM 12/28/00 -0500, you wrote: you're downloading a file that your browser doesn't recognize. Just HREF an exe or zip file and see what happens. ~Simon Simon Horwith Allaire Certified

RE: File Download

2000-12-28 Thread Christopher Olive, CIO
well, if the url is http://blahblah.com/myfile.zip, the browser will ask the user about saving/opening the file. unless of course, it's IE, where if it thinks it knows what kind of file it is, it will try to open it in the native program. chris olive, cio cresco technologies [EMAIL PROTECTED]

Re: File download

2000-09-26 Thread Christopher S Martin
Try thed cf_download tag from the alliare developer connection. - Original Message - From: "Vinuthomas" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Tuesday, September 26, 2000 05:31 Subject: File download Hi. How to download a file form the server ,is it possible by