RE: QUestion about Input File and CFFILE

2002-10-09 Thread Yager, Brian T Contractor/Sverdrup
-Original Message- From: Jeff Garza [mailto:[EMAIL PROTECTED]] Sent: Tuesday, October 08, 2002 4:56 PM To: CF-Talk Subject: Re: QUestion about Input File and CFFILE What does #CFFILE.ClientFile# return? Jeff - Original Message - From: Yager, Brian T Contractor/Sverdrup [EMAIL

RE: QUestion about Input File and CFFILE

2002-10-09 Thread Yager, Brian T Contractor/Sverdrup
:15 AM To: CF-Talk Subject: Re: QUestion about Input File and CFFILE Brian, Here is the code I am using: script language=JavaScript function parseFileName(theFile) { var start = -1; while (theFile.value.indexOf(\\, start + 1) != -1

RE: QUestion about Input File and CFFILE

2002-10-09 Thread Mosh Teitelbaum
PROTECTED] WWW: http://www.evoch.com/ -Original Message- From: Yager, Brian T Contractor/Sverdrup [mailto:[EMAIL PROTECTED]] Sent: Wednesday, October 09, 2002 8:33 AM To: CF-Talk Subject: RE: QUestion about Input File and CFFILE you can only use that AFTER you have used CFFILE. I need

Re: QUestion about Input File and CFFILE

2002-10-08 Thread Jeff Garza
What does #CFFILE.ClientFile# return? Jeff - Original Message - From: Yager, Brian T Contractor/Sverdrup [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Tuesday, October 08, 2002 1:11 PM Subject: QUestion about Input File and CFFILE I am trying to upload a file using CFFILE. I

Re: QUestion about Input File and CFFILE

2002-10-08 Thread Robert Polickoski
Brian, Here is the code I am using: script language=JavaScript function parseFileName(theFile) { var start = -1; while (theFile.value.indexOf(\\, start + 1) != -1) { start = theFile.value.indexOf(\\, start + 1); }

Re: QUestion about Input File and CFFILE

2002-10-08 Thread S . Isaac Dealey
The file information from the client machine is stored in a series of variables called cffile.clientfile[whatever] so cffile.clientfile will give you the name of the file and cffile.clientfileext will give you the extension of the file from the client machine... all of the same information for