Yes meant adding
<input type="file" name="File1" size="20">
and
<input type="file" name="File2" size="20">
And set your permissions per
http://support.microsoft.com/default.aspx?scid=kb;en-us;299763&Product=fp2002
No haven't tried since I don't use the std FP forms
- I use ASPupload instead
--
| Dear Stefan,
|
| What do you mean "multiple File upload form elements"?
| by adding more file type elements in the input form?
| Of course I tried to one more file element in the form, and it did work any
| more.
| Did you try and succeeded??
| Could you elaborate?
| Thank you very much in advance
|
| "Stefan B Rusynko" wrote:
|
| > Try adding multiple File upload form elements
| >
| > --
| >
| > _____________________________________________
| > SBR @ ENJOY (-: [ Microsoft MVP - FrontPage ]
| > "Warning - Using the F1 Key will not break anything!" (-;
| > To find the best Newsgroup for FrontPage support see:
| >
http://www.net-sites.com/sitebuilder/newsgroups.asp
| > _____________________________________________
| >
| >
| > | Dear Stefan,
| > | How can I upload mutiple files in one upload form?
| > | Thank you in advance
| > |
| > | ENT
| > |
| > | "Stefan B Rusynko" wrote:
| > |
| > | > Not with the std FP file upload component
| > | >
| > | > Check w/ your host to see if they support ASP and a File Upload component
| > | > You could do an ASP file upload and add ASP to delete all but .jpg files (after the upload)
| > | > - if the host supports a file use their script recommendation
| > | > Otherwise See
http://support.microsoft.com/kb/299692/EN-US/
| > | >
| > | > Then modify the code for the UploadFile.asp to be
| > | >
| > | > If Err.number = 0 Then
| > | > For Each File in fuFile.Files
| > | > Ext = UCase(Right(fuFile.FileName, 3))
| > | > If Ext <> "JPG" Then
| > | > File.Delete
| > | > strMsg = "Illegal File NOT UpLoaded"
| > | > Else
| > | > strMsg = fuFile.FileName & " was uploaded successfully."
| > | > End If
| > | > Next
| > | > Else
| > | > .... .....
| > | >
| > | > --
| > | >
| > | > _____________________________________________
| > | > SBR @ ENJOY (-: [ Microsoft MVP - FrontPage ]
| > | > "Warning - Using the F1 Key will not break anything!" (-;
| > | > To find the best Newsgroup for FrontPage support see:
| > | >
http://www.net-sites.com/sitebuilder/newsgroups.asp
| > | > _____________________________________________
| > | >
| > | >
| > | > | Hi all,
| > | > | Is there any way it is possible to restrict the type of file uploaded using
| > | > | the file upload function within a form?
| > | > |
| > | > | I need to force users to upload files of one type i.e .jpg as uploading .bmp
| > | > | images is causing problems with the forum software I am using (apart from the
| > | > | obvious file size implications)
| > | > |
| > | > | Thanks for taking the time to read this posting. Andy
| > | >
| > | >
| > | >
| >
| >
| >