> I'm uploading two files using <CFFILE>. I have to write the
> filenames in a database. How can I mention the different
> Clientfile-variables?

You'll have to reference each one after you've executed the corresponding
CFFILE:

<CFFILE ACTION="UPLOAD"
        FILEFIELD="filefield1" ...>

...

<CFSET MyFile1ClientFile = File.ClientFile>

...

<CFFILE ACTION="UPLOAD"
        FILEFIELD="filefield2" ...>

...

<CFSET MyFile2ClientFile = File.ClientFile>

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/
voice: (202) 797-5496
fax: (202) 797-5444

------------------------------------------------------------------------------
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.

Reply via email to