Re: Multipart forms

2004-07-20 Thread Diego
-- >From: "Diego" <[EMAIL PROTECTED]> >To: <[EMAIL PROTECTED]> >Sent: Tuesday, July 20, 2004 8:26 AM >Subject: Re: Multipart forms > Thanks for your answer Niall. If I can't get the parameters in the reset() > method, then I don't know how to sol

Re: Multipart forms

2004-07-20 Thread Niall Pemberton
ECTED]> Sent: Tuesday, July 20, 2004 8:26 AM Subject: Re: Multipart forms > Thanks for your answer Niall. If I can't get the parameters in the reset() > method, then I don't know how to solve my problem. My ActionForm is on session > and it's a wizard-like one. The jsp

Re: Multipart forms

2004-07-20 Thread Diego
Thanks for your answer Niall. If I can't get the parameters in the reset() method, then I don't know how to solve my problem. My ActionForm is on session and it's a wizard-like one. The jsp has tabs to go to any page at any time. What I do with non-multipart forms is something like this in the rese

Re: Multipart forms

2004-07-19 Thread Niall Pemberton
You can't get them in the reset() method. Parameters in multipart requests are processed later and made available by wrapping the original request in MultipartRequestWrapper and storing the "normal" request parameters in that wrapper. Thats not done until the form is populated. The first chance yo