RE: reuse of request parameter in application flow

2004-05-12 Thread Michael McGrady
, Jeff -Original Message- From: Michael McGrady [mailto:[EMAIL PROTECTED] Sent: Wednesday, May 12, 2004 2:22 PM To: Struts Users Mailing List Cc: Struts Users Mailing List Subject: Re: reuse of request parameter in application flow This whole area is fraught with opportunity, Samuel. People

RE: reuse of request parameter in application flow

2004-05-12 Thread Jeffrey Goodwin
: Re: reuse of request parameter in application flow This whole area is fraught with opportunity, Samuel. People have been trying to find sensible ways of doing this. Have you thought of building a do/undo/redo application to handle these issues for your user/gui data? If that interests you, I

Re: reuse of request parameter in application flow

2004-05-12 Thread Michael McGrady
This whole area is fraught with opportunity, Samuel. People have been trying to find sensible ways of doing this. Have you thought of building a do/undo/redo application to handle these issues for your user/gui data? If that interests you, I have a simple, but effective rather generic command

Re: reuse of request parameter in application flow

2004-05-12 Thread Riyad Kalla
Samuel, I've had this problem as well and what I ended up doing was to add 'hidden' tags to the top of my html:form element that encapsulated the parameters that I wanted to persist to the next page. Something like: ... User Name: Join Date: .

reuse of request parameter in application flow

2004-05-12 Thread Samuel Rochas
Hello, I am using an Action which puts some data in the request scope. That's just fine to display the data in the (exactly one) next jsp page (let's call it target.jsp). I am submiting a form in target.jsp which should do some action an show again the target.jsp page. How can I tell my page