dumbQuestionsAsker _ wrote:
Im new to Struts, and I want to upload multiple files using only one <html:file> tag. I made some googleling but I did not find anything working, only "that's not possible"-like answers. So my question is simple, is it really impossible to upload multiple files usng only one <html:file> ?
Simple answer is yes; <html:file/> just renders renders an HTML <input type='file'/> element so you need one tag per input field you want on your form.
If what you want is to have multiple files submitted through the same request parameter, though, you should be able to bind N <html:file/> tags to a single form bean property.
L. -- Laurie, Open Source advocate, Java geek and novice blogger: http://www.holoweb.net/~laurie/ --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]