RE: uploading multiple files

2001-04-26 Thread Susan Matthews
26, 2001 12:26 PM > To: CF-Talk > Subject: RE: uploading multiple files > > > i do this a lot. > > in your form, CFLOOP to create each upload form element. use the > INDEX value > as part of each form element name. > > then, in the code that handles the form, CF

RE: uploading multiple files

2001-04-26 Thread Dylan Bromby
i do this a lot. in your form, CFLOOP to create each upload form element. use the INDEX value as part of each form element name. then, in the code that handles the form, CFLOOP over the name of each form element using Evaluate() to get the actual value of each var name. -Original Message--

RE: uploading multiple files

2001-04-26 Thread Dylan Bromby
-Talk Subject: RE: uploading multiple files Thank you. I'm not as familiar w/ file.clientFile as I should be. It may not even be what I need in this situation First form: Large Image: Thumbnail Image: Printable Version: Then, in the receiving form... I understand how to loop

RE: uploading multiple files

2001-04-26 Thread Susan Matthews
ohhh. Who knows what I was thinking. Thank you for your help! :) > -Original Message- > From: Dylan Bromby [mailto:[EMAIL PROTECTED]] > Sent: Thursday, April 26, 2001 2:15 PM > To: CF-Talk > Subject: RE: uploading multiple files > > > you will use CFFILE in each

Re: uploading multiple files

2000-05-04 Thread B.Cravens
#file.serverfile# can only contain one value at a time. So your code will write the value for excfile into both fields in the db. Instead, do a cffile, then assign the file.serverfile to another variable, then do your next cffile, and so on. Ex: INSERT INTO table (resFile, excfile) VALU

Re: Uploading multiple files

2007-08-18 Thread James Holmes
You can't. You'll need to use something like a flex app or a java applet. I've used this flex app with great success: http://www.adobe.com/devnet/coldfusion/articles/multifile_upload.html On 8/19/07, Steve Sequenzia <[EMAIL PROTECTED]> wrote: > I am trying to figure out how to use cfinput type="

Re: Uploading multiple files

2007-08-19 Thread Pete Ruckelshaus
Use multiple typoe="file" fields with unique names and process each one separately. I've also created apps where a single zip file containing multiple files can be uploaded, then the package is unzipped and the files contained are processed. Pete On 8/18/07, Steve Sequenzia <[EMAIL PROTECTED]>

Re: Uploading multiple files

2007-08-19 Thread Web Specialist
I'll suggest you to use this great javascript and Flash utility to upload several files. Works like a charm for me integrated with CF backend. Very impressive! http://swfupload.mammon.se/ Cheers 2007/8/19, Pete Ruckelshaus <[EMAIL PROTECTED]>: > > Use multiple typoe="file" fields with unique nam

Re: uploading multiple files questions

2006-10-27 Thread daniel kessler
well the problem seems to have just "gone away - poof", which scares the beh-jeebers outta me. Not much I can do though if the problem doesn't show now. Well, as I'll post the other question in it's own post. > I'm trying to upload multiple files to the server from a form with > multiple file

Re: Uploading multiple files at one time

2000-12-11 Thread Sébastien Riccio
maybe multile file fields ? (with browse buttons) - Original Message - From: "Milks, Jim" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Monday, December 11, 2000 8:48 PM Subject: Uploading multiple files at one time > Hi All, > > I want to upload several files at a

RE: Uploading multiple files at one time

2000-12-11 Thread Dylan Bromby
i've done this on several occassions this way: 1) the user enters how many files to upload (n) 2) loop n times over INPUT TYPE=FILE NAME=file#n# 3) pass a var with the same num but incremental values in each iteration - so you might wind up with a var called "list" with a value of 1,2,3,4,...etc.

Re: Uploading multiple files - not necessarily CF

2006-04-25 Thread Rob Wilkerson
What about using DHTML? Take a look at something like this: http://the-stickman.com/web-development/javascript/upload-multiple-files-with-a-single-file-element/ I've played with it a little bit and it looks pretty nice. I have not used it in production, though, so it will require some testing.

RE: Uploading multiple files - not necessarily CF

2006-04-25 Thread Ben Nadel
ff like ActiveX dealies. -ben ... Ben Nadel www.bennadel.com -Original Message- From: Rob Wilkerson [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 25, 2006 2:19 PM To: CF-Talk Subject: Re: Uploading multiple files - not necessarily CF What about using DHTML? Take a lo

Re: Uploading multiple files - not necessarily CF

2006-04-25 Thread Russ Michaels
Checkout the CFFM (CF file Manager) by Rick root I think. Russ -Original Message- From: "Rob Wilkerson" <[EMAIL PROTECTED]> To: CF-Talk Date: Tue, 25 Apr 2006 14:19:22 -0400 Subject: Re: Uploading multiple files - not necessarily CF > What about using DHTML? Take

Re: Uploading multiple files - not necessarily CF

2006-04-25 Thread Rob Wilkerson
You mean by control- or shift-clicking? So click "Browse" and then select multiple files from the dialog? If so, then that can't be done as far as I know. Using the standard file input, control- and shift-clicking is disabled. One file at a time. Period. I missed that possible meaning. Thank

RE: Uploading multiple files - not necessarily CF

2006-04-25 Thread Everett, Al \(NIH/NIGMS\) [C]
25, 2006 2:37 PM To: CF-Talk Subject: Re: Uploading multiple files - not necessarily CF Checkout the CFFM (CF file Manager) by Rick root I think. Russ -Original Message- From: "Rob Wilkerson" <[EMAIL PROTECTED]> To: CF-Talk Date: Tue, 25 Apr 2006 14:19:22 -0400 Subject: Re

RE: Uploading multiple files - not necessarily CF

2006-04-25 Thread Everett, Al \(NIH/NIGMS\) [C]
e- From: Ben Nadel [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 25, 2006 2:32 PM To: CF-Talk Subject: RE: Uploading multiple files - not necessarily CF Rob, That's nice little solutions. I think though, what he ultimately wants is to not have to "browse" for each new file...

RE: Uploading multiple files - not necessarily CF

2006-04-25 Thread Everett, Al \(NIH/NIGMS\) [C]
ent.) -Original Message- From: Rob Wilkerson [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 25, 2006 2:42 PM To: CF-Talk Subject: Re: Uploading multiple files - not necessarily CF You mean by control- or shift-clicking? So click "Browse" and then select multiple files from

RE: Uploading multiple files - not necessarily CF

2006-04-25 Thread Everett, Al \(NIH/NIGMS\) [C]
pril 25, 2006 3:00 PM To: CF-Talk Subject: RE: Uploading multiple files - not necessarily CF Looks promising, but may be more than I need/want. I certainly don't want the end users able to delete files or directories on the server. But I've just glanced at it. Thanks for the tip. -O

RE: Uploading multiple files - not necessarily CF

2006-04-25 Thread Mark Leder
www.aurigma.com Awesome Java tag - some of the best documentation I've seen anywhere. Thanks, Mark -Original Message- From: Everett, Al (NIH/NIGMS) [C] [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 25, 2006 3:05 PM To: CF-Talk Subject: RE: Uploading multiple files - not necess

Re: Uploading multiple files - not necessarily CF

2006-04-25 Thread DRE
. > > -Original Message- > From: Everett, Al (NIH/NIGMS) [C] > Sent: Tuesday, April 25, 2006 3:00 PM > To: CF-Talk > Subject: RE: Uploading multiple files - not necessarily CF > > Looks promising, but may be more than I need/want. I certainly don't want > the end use

RE: Uploading multiple files - not necessarily CF

2006-04-25 Thread Everett, Al \(NIH/NIGMS\) [C]
I've been told that whatever solution we go with has to work in the current application "flow." In other words, we need to be able to seamlessly slot the solution into our current web application. Sending the users to a separate application is a non-starter. I need something that, ideally, can fit

RE: Uploading multiple files - not necessarily CF

2006-04-25 Thread Mark Leder
: RE: Uploading multiple files - not necessarily CF I've been told that whatever solution we go with has to work in the current application "flow." In other words, we need to be able to seamlessly slot the solution into our current web application. Sending the users to a separate a

RE: Uploading multiple files - not necessarily CF

2006-04-25 Thread Everett, Al \(NIH/NIGMS\) [C]
I'll dig into that. Gotta get Java installed though. -Original Message- From: Mark Leder [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 25, 2006 4:14 PM To: CF-Talk Subject: RE: Uploading multiple files - not necessarily CF The java app I mentioned will fit directly into your html

RE: Uploading multiple files - not necessarily CF

2006-04-25 Thread Patrick McGeehan
MAIL PROTECTED] Sent: Tuesday, April 25, 2006 4:21 PM To: CF-Talk Subject: RE: Uploading multiple files - not necessarily CF I'll dig into that. Gotta get Java installed though. -Original Message- From: Mark Leder [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 25, 2006 4:14 PM To: CF-T

Re: Uploading multiple files - not necessarily CF

2006-04-25 Thread Ryan Guill
[mailto:[EMAIL PROTECTED] > Sent: Tuesday, April 25, 2006 4:21 PM > To: CF-Talk > Subject: RE: Uploading multiple files - not necessarily CF > > I'll dig into that. Gotta get Java installed though. > > -Original Message- > From: Mark Leder [mailto:[EMAIL PROTEC

RE: Uploading multiple files - not necessarily CF

2006-04-25 Thread Mark Leder
: Re: Uploading multiple files - not necessarily CF here is a flash 8 application that allows multiple file uploads. I never did dig in to see how it was done, but you are free to try. http://www.bubbleshare.com/upload/mmflash On 4/25/06, Patrick McGeehan <[EMAIL PROTECTED]> wrote: > Are

RE: Uploading multiple files - not necessarily CF

2006-04-26 Thread Andy Matthews
- From: Everett, Al (NIH/NIGMS) [C] [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 25, 2006 2:05 PM To: CF-Talk Subject: RE: Uploading multiple files - not necessarily CF Alas, I spoke too soon. No, that's not going to work for me. The "upload multiple files" is simply 20 HTML file fie

Re: Uploading multiple files - not necessarily CF

2006-04-26 Thread Ray Champagne
t; --//-> > > -Original Message- > From: Everett, Al (NIH/NIGMS) [C] [mailto:[EMAIL PROTECTED] > Sent: Tuesday, April 25, 2006 2:05 PM > To: CF-Talk > Subject: RE: Uploading multiple files - not necessarily CF > > > Alas, I spoke too soon. N

RE: Uploading multiple files - not necessarily CF

2006-04-26 Thread Everett, Al \(NIH/NIGMS\) [C]
y Matthews [mailto:[EMAIL PROTECTED] Sent: Wednesday, April 26, 2006 9:46 AM To: CF-Talk Subject: RE: Uploading multiple files - not necessarily CF I know it seems like a pain to select 20 uploads at once, but once you've selected the first file, the browser will remember the directory you were last