Re: multi file upload

2004-08-21 Thread struts lover
My implementation is slightly different. I created an object of FileData with fields like formfile,filename etc. When you first paint the jsp, your action class would create a FileData object and put it into the arraylist defined in your action form. I have a button called ADD ANOTHER FILE. When y

Re: multi file upload

2004-08-21 Thread Stefan Groschupf
I have done the same thing. I would be interested how you had realize the ActionForm getter and setter. You handle the files every time a user press the "load up this file" button? Thank you very much! Stefan - To unsubscribe,

Re: multi file upload

2004-08-21 Thread struts lover
Hi, I have done the same thing. I have an arraylist of formfile objects. I keep it in session. If you dont want to keep it in session, you might keep it in some temp folder on the server. But I would suggest to keep in the session, and after you complete your transaction, clean up the session. You