Re: File attachment after user error

2006-09-01 Thread Denny Valliant
There is always AJAX. Woot, the other BEST use (besides in-line search filtering) for it. Same page validation. I love it. Should be pretty easy to use existing validation code, even. :den On 8/31/06, Robert Feyerherm [EMAIL PROTECTED] wrote: Maybe there are some possible solutions using

RE: File attachment after user error

2006-08-31 Thread Everett, Al \(NIH/NIGMS\) [C]
Basically, it can't be done. Not with HTML and JavaScript, anyway. It's a security issue. What you're seeing is by design. You'd have to use something other than input type=file. -Original Message- From: Casey C Cook Sent: Thursday, August 31, 2006 3:03 PM To: CF-Talk Subject: File

RE: File attachment after user error

2006-08-31 Thread Robert Feyerherm
Maybe there are some possible solutions using flash forms or something outside the bounds of the normal input tag... -Robert -Original Message- From: Casey C Cook [mailto:[EMAIL PROTECTED] Sent: Thursday, August 31, 2006 2:03 PM To: CF-Talk Subject: File attachment after user error

RE: File Attachment

2003-07-03 Thread Matthew Walker
What do you have in the database? The entire document or just the file name? -Original Message- From: Jessica Fay [mailto:[EMAIL PROTECTED] Sent: Thursday, 3 July 2003 6:19 p.m. To: CF-Talk Subject: File Attachment so if i were to retrieve from the database, it'll be like a

Re: File Attachment

2003-07-03 Thread Matthew Walker
Yes! ;-) I like to add the file type, size and download time as well. Matthew Walker Electric Sheep Web http://www.electricsheep.co.nz/ - Original Message - From: Jessica Fay [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, July 03, 2003 6:19 PM Subject: File Attachment

RE: File Attachment

2003-07-02 Thread Matthew Walker
What sort of file -- a document? How about just a link? a href=... -Original Message- From: Fay [mailto:[EMAIL PROTECTED] Sent: Thursday, 3 July 2003 4:18 p.m. To: CF-Talk Subject: File Attachment Hi.. I would like to ask, how to i allow the user to view the file (which may be

RE: File Attachment

2003-07-02 Thread Tyagi, Badal
If you want to show user the files in browser only then you will have to use cfcontent tag with correct type attribute in it. cffile won't help much rather it will store the file contents in a varaible which further you can cfoutput the same. Also please specify what type of files you wanna

RE: File Attachment

2003-07-02 Thread Matthew Walker
You should be fine with a regular link i.e. a href=/files/mydoc.pdf target=_blankMy document/a a href=/files/myimg.jpg target=_blankMy image/a -Original Message- From: Jessica Fay [mailto:[EMAIL PROTECTED] Sent: Thursday, 3 July 2003 4:38 p.m. To: CF-Talk Subject: File Attachment