RE: input and output form

2004-08-23 Thread Paul McCulloch
could be used with links,.. Can you elaborate? Paul -Original Message- From: Dan Allen [mailto:[EMAIL PROTECTED] Sent: Sunday, August 22, 2004 5:58 AM To: Struts Users Mailing List Subject: Re: input and output form Using your example I would have a form to gather the search

Re: input and output form

2004-08-21 Thread Dan Allen
Using your example I would have a form to gather the search criteria. Submitting the form to the first action would gather a list of employess and store that list in a request scope attribute. It would then forward to the employee list jsp which would render the list of employees. Selecting an

RE: input and output form

2004-08-20 Thread Paul McCulloch
You don't need to populate a form for output. Forms are needed when you want to gather user input. Using your example I would have a form to gather the search criteria. Submitting the form to the first action would gather a list of employess and store that list in a request scope attribute. It

RE: input and output form

2004-08-19 Thread Jim Barrows
-Original Message- From: Dan Allen [mailto:[EMAIL PROTECTED] Sent: Thursday, August 19, 2004 12:18 PM To: [EMAIL PROTECTED] Subject: input and output form I often times run into the conflict, when developing a Struts application, of which form to choose for a given action.