RE: Browser client for upload files?

2001-10-03 Thread Darren Adams
all dancing file upload tag that you know about ? Cheers, Daz Adams -Original Message- From: Shawn Grover [mailto:[EMAIL PROTECTED]] Sent: 07 September 2001 16:17 To: CF-Talk Subject: RE: Browser client for upload files? Another option you have is to use a java applet, like AppletFile

RE: Browser client for upload files?

2001-10-03 Thread Darren Adams
Hows about just */pdf ? -Original Message- From: Tilbrook, Peter [mailto:[EMAIL PROTECTED]] Sent: 06 September 2001 04:20 To: CF-Talk Subject: RE: Browser client for upload files? Something like this (using a form and then an action page): First page (with form): form name=PDFUpload

RE: Browser client for upload files?

2001-09-07 Thread Mark Stewart
I use something like this: form name=uploadform action=index.cfm enctype=multipart/form-data method=post table tr tdinput type=File name=filename size=60 value=/td tdinput type=submit value=Submit/td /tr

RE: Browser client for upload files?

2001-09-07 Thread C. Hatton Humphrey
You have to set up two things. First you need a form page that has two things: 1. The form tag needs to have method=post and enctype=multipart/form-data. This tells the browser to send the file back to the server correctly. 2. In your form you need an input type=file... tag. This tag will

RE: Browser client for upload files?

2001-09-07 Thread Dunwiddie, Bruce
on submitting page... (make sure to include the enctype) FORM ACTION=action.cfm METHOD=Post name=product ENCTYPE=multipart/form-data input type=file name=image /form on the action page cfset path=GetDirectoryFromPath(GetTemplatePath()) cfset path=path 'pdfs\' CFFILE ACTION=Upload

RE: Browser client for upload files?

2001-09-07 Thread Shawn Grover
To: CF-Talk Subject: RE: Browser client for upload files? on submitting page... (make sure to include the enctype) FORM ACTION=action.cfm METHOD=Post name=product ENCTYPE=multipart/form-data input type=file name=image /form on the action page cfset path=GetDirectoryFromPath(GetTemplatePath

RE: Browser client for upload files?

2001-09-06 Thread Tilbrook, Peter
Something like this (using a form and then an action page): First page (with form): form name=PDFUpload method=POST enctype=multipart/form-data action=uploadfile.cfm h5Filename:brinput type=file name=PDF size=40/h5 pinput type=submit value=Upload File /form Followed with the action page called

RE: Browser client for upload files?

2001-09-06 Thread Joel Blanchette
Just use the following input type=file name=UploadFile That simple. Joel -Original Message- From: Willy Ray [mailto:[EMAIL PROTECTED]] Sent: September 5, 2001 11:49 AM To: CF-Talk Subject: Browser client for upload files? Alright, the client needs to upload a PDF file. How do I