Re: NEWBIE: How to pass parameters between JSPs

2004-09-30 Thread HG
<[EMAIL PROTECTED]> To: "'Struts Users Mailing List'" <[EMAIL PROTECTED]> Sent: Thursday, September 30, 2004 3:37 PM Subject: RE: NEWBIE: How to pass parameters between JSPs Hi Henrik Yes that's it. I tried what you suggest and it works. Many thanks. Wha

RE: NEWBIE: How to pass parameters between JSPs

2004-09-30 Thread Adam Lipscombe
g the ActionForm like you suggest the normal way to handle this situation? (i.e. "passing through" params). TIA - Adam -Original Message- From: HG [mailto:[EMAIL PROTECTED] Sent: 30 September 2004 14:14 To: Struts Users Mailing List Subject: Re: NEWBIE: How to pass paramete

Re: NEWBIE: How to pass parameters between JSPs

2004-09-30 Thread HG
CTED] Sent: 30 September 2004 12:32 To: Struts Users Mailing List Subject: Re: NEWBIE: How to pass parameters between JSPs Hi Andy A session variable can be "expensive". Why not just put it on the request by using "request.setAttribute" in one action and getting it again usin

RE: NEWBIE: How to pass parameters between JSPs

2004-09-30 Thread Adam Lipscombe
: How to pass parameters between JSPs Hi Andy A session variable can be "expensive". Why not just put it on the request by using "request.setAttribute" in one action and getting it again using "request.getAttribute" in another action? What is your "paramete

Re: NEWBIE: How to pass parameters between JSPs

2004-09-30 Thread HG
Forget my previous post. Was answering an answer... :-) Might need some sleep.. :-) - Original Message - From: "andy wix" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, September 30, 2004 1:03 PM Subject: NEWBIE: How to pass parameters between JSPs > Hi, > > It's probably b

Re: NEWBIE: How to pass parameters between JSPs

2004-09-30 Thread HG
Hi Andy A session variable can be "expensive". Why not just put it on the request by using "request.setAttribute" in one action and getting it again using "request.getAttribute" in another action? What is your "parameter"? A simple type, object, graph of objects? - Original Message -