Re: Design question: Confirm action after validation ?

2003-07-09 Thread Adam Hardy
I have an Action base class which all my other Action classes inherit. In the execute() of this base class I check whether the user clicked cancel, before I call the child class execute(). I presume it would be easy enough to store the originating URL in the session, and if cancel is clicked,

Re: Design question: Confirm action after validation ?

2003-07-09 Thread Shashank Dixit
List [EMAIL PROTECTED] Sent: Wednesday, July 09, 2003 2:52 PM Subject: Re: Design question: Confirm action after validation ? I have an Action base class which all my other Action classes inherit. In the execute() of this base class I check whether the user clicked cancel, before I call

Re: Design question: Confirm action after validation ?

2003-07-09 Thread Adam Hardy
? Pls reply Shashank - Original Message - From: Adam Hardy [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Wednesday, July 09, 2003 2:52 PM Subject: Re: Design question: Confirm action after validation ? I have an Action base class which all my other Action classes

Re: Design question: Confirm action after validation ?

2003-07-09 Thread Shashank Dixit
: Adam Hardy [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Wednesday, July 09, 2003 3:26 PM Subject: Re: Design question: Confirm action after validation ? my base action class sorts out all the general objects and variables that the child actions need - this is the child

Re: Design question: Confirm action after validation ?

2003-07-09 Thread Adam Hardy
) from webserver to appserver Shashank - Original Message - From: Adam Hardy [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Wednesday, July 09, 2003 3:26 PM Subject: Re: Design question: Confirm action after validation ? my base action class sorts out all

Design question: Confirm action after validation ?

2003-07-08 Thread Ajay Patil
Hello, In my Struts application, the validation is done on server-side for every page. If the validation is successful, the user would like to see a page to confirm his action. The Confirm page should also have a Cancel button allowing him to go back to the previous page showing the data entered