RE: multiple action forms in a single jsp

2004-01-29 Thread Ben Anderson
I think you need to take a step back and understand how http works. Per each request, only one html form can be submitted(whether it's a get or a post). This is not specific to Struts, Java or any web server solutions. Your design is flawed, but it doesn't pertain to Struts. You can have

RE: multiple action forms in a single jsp

2004-01-29 Thread Mathew, Manoj
Anderson [mailto:[EMAIL PROTECTED] Sent: Thursday, January 29, 2004 9:51 AM To: [EMAIL PROTECTED] Subject: RE: multiple action forms in a single jsp I think you need to take a step back and understand how http works. Per each request, only one html form can be submitted(whether it's a get

RE: multiple action forms in a single jsp

2004-01-29 Thread Hookom, Jacob
, 2004 10:02 AM To: Struts Users Mailing List Subject: RE: multiple action forms in a single jsp Actually i had a single action form till yesterday. But since the form is getting bigger and bigger (it is very huge now and i am just half way done), I was thinking of other possibilities. My application

RE: multiple action forms in a single jsp

2004-01-29 Thread Mathew, Manoj
Mailing List Subject: RE: multiple action forms in a single jsp What you are describing almost sounds like a good use of JSF-- If you have 5 forms on a page, separate, do you want to save the state of the other 4 forms if submit is sent for one of them? -Original Message- From: Mathew

RE: multiple action forms in a single jsp

2004-01-29 Thread Hookom, Jacob
child forms yourself/manage the lifecycles for reset() and validates. -Jake -Original Message- From: Mathew, Manoj [mailto:[EMAIL PROTECTED] Sent: Thursday, January 29, 2004 12:12 PM To: Struts Users Mailing List Subject: RE: multiple action forms in a single jsp Actually my real issue