RE: QUestion about Input File and CFFILE

2002-10-09 Thread Mosh Teitelbaum
3-3651 Email: [EMAIL 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 > >

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: function parseFileName(theFile) { var start = -1; while (theFile.value.indexOf("\\", start + 1) != -1) {

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/Sve

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 the

Re: QUestion about Input File and CFFILE

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

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 CFFI