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): Filename

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 "Apple

RE: Browser client for upload files?

2001-09-07 Thread Shawn Grover
o: CF-Talk Subject: RE: Browser client for upload files? on submitting page... (make sure to include the enctype) on the action page -Original Message- From: Willy Ray [mailto:[EMAIL PROTECTED]] Sent: Wednesday, September 05, 2001 11:49 AM To: CF-Talk Subject: Browser client

RE: Browser client for upload files?

2001-09-07 Thread Dunwiddie, Bruce
on submitting page... (make sure to include the enctype) on the action page -Original Message- From: Willy Ray [mailto:[EMAIL PROTECTED]] Sent: Wednesday, September 05, 2001 11:49 AM To: CF-Talk Subject: Browser client for upload files? Alright, the client needs to upload

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 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 tag. This tag will put in a text box and

RE: Browser client for upload files?

2001-09-07 Thread Mark Stewart
I use something like this: Mark -Original Message- From: Willy Ray [mailto:[EMAIL PROTECTED]] Sent: Wednesday, September 05, 2001 12:49 PM To: CF-Talk Subject: Browser client for uplo

RE: Browser client for upload files?

2001-09-06 Thread Joel Blanchette
Just use the following 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 let the user browse their machine

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): Filename: Followed with the action page called uploadfile.cfm: The above accepts only web image formats (Compuserve GIF, JPEG and Progressive JPEG). I'm not sure what the mime type for Acrobat PDF is. Perh