RE: Struts2: Carry parameters into following jsp/action

2008-12-06 Thread Dave Newton
> So what happens when a woman dies her hair or wears > colored contact lens? She stays the same age. Dave - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: Struts2: Carry parameters into following jsp/action

2008-12-06 Thread Martin Gainty
ontained within this transmission. > Date: Sat, 6 Dec 2008 07:17:00 -0800 > From: [EMAIL PROTECTED] > Subject: RE: Struts2: Carry parameters into following jsp/action > To: user@struts.apache.org > > --- On Sat, 12/6/08, Martin Gainty wrote: > > if your form in

RE: Struts2: Carry parameters into following jsp/action

2008-12-06 Thread Dave Newton
--- On Sat, 12/6/08, Martin Gainty wrote: > if your form includes age you'll need to read > http://www.eeoc.gov/policy/adea.html Only if the OP is (a) an employer and (b) using ages above 40 as a basis to deny employment. People do, however, collect age information for other reasons, like simple

RE: Struts2: Carry parameters into following jsp/action

2008-12-06 Thread Martin Gainty
this transmission. > Date: Sat, 6 Dec 2008 15:09:11 +0100 > From: [EMAIL PROTECTED] > To: user@struts.apache.org > Subject: Re: Struts2: Carry parameters into following jsp/action > > Hi all, > if this first form is very simple i would use hidden fields in second form. &g

Re: Struts2: Carry parameters into following jsp/action

2008-12-06 Thread Paweł Wielgus
From: Dave Newton [mailto:[EMAIL PROTECTED] > Sent: December 5, 2008 1:57 PM > To: Struts Users Mailing List > Subject: Re: Struts2: Carry parameters into following jsp/action > > The quickest/easiest solutions are chaining (boo hiss) or just keeping a form > model in the session li

RE: Struts2: Carry parameters into following jsp/action

2008-12-05 Thread Radu Solomon
Message- From: Dave Newton [mailto:[EMAIL PROTECTED] Sent: December 5, 2008 1:57 PM To: Struts Users Mailing List Subject: Re: Struts2: Carry parameters into following jsp/action The quickest/easiest solutions are chaining (boo hiss) or just keeping a form model in the session like in any other

RE: Struts2: Carry parameters into following jsp/action

2008-12-05 Thread Dave Newton
--- On Fri, 12/5/08, Peterson, Ryan wrote: > I've heard rumblings about using session, so I thought > I'd avoid it this time to implement something "clever". Most of the clever solutions are just hiding session use, and there are a couple ways to wrap that up in Struts, including Spring scoped be

RE: Struts2: Carry parameters into following jsp/action

2008-12-05 Thread Peterson, Ryan
AM To: Struts Users Mailing List Subject: Re: Struts2: Carry parameters into following jsp/action The quickest/easiest solutions are chaining (boo hiss) or just keeping a form model in the session like in any other framework. Dave --- On Fri, 12/5/08, Peterson, Ryan wrote: > I have a form fill

Re: Struts2: Carry parameters into following jsp/action

2008-12-05 Thread Dave Newton
The quickest/easiest solutions are chaining (boo hiss) or just keeping a form model in the session like in any other framework. Dave --- On Fri, 12/5/08, Peterson, Ryan wrote: > I have a form filled out that may require additional info, > which I have > a 2nd jsp form for. How can I carry over

Struts2: Carry parameters into following jsp/action

2008-12-05 Thread Peterson, Ryan
Hello all, I have a form filled out that may require additional info, which I have a 2nd jsp form for. How can I carry over the already entered parameters from the first form to the second, so that all info may be submitted to an action. For example: data is collected from form1.jsp. Say nam