Refreshing Issue.

2003-07-11 Thread Anurag Garg
Hi All, I am facing a problem in jsp page refreshing. After submitting the page to add a new record in the database, I again display the same page with the added record in the list. Now If I press F5 (I am not clicking the ADD button) it again adds a new record(duplicate record) in the database,

Re: Refreshing Issue.

2003-07-11 Thread Mark Lowe
redirect=true where you define your forward. //in your action return (mapping.findForward(good)); //Struts-config forward name=good path=/myPage.jsp redirect=true/ HTH mark On Friday, July 11, 2003, at 11:07 AM, Anurag Garg wrote: Hi All, I am facing a problem in jsp page refreshing. After

RE: Refreshing Issue.

2003-07-11 Thread Ravi Garg
thing the clear history on submit of this page or else disable the refresh option. Cheers Ravi -Original Message- From: Anurag Garg [mailto:[EMAIL PROTECTED] Sent: Friday, July 11, 2003 3:38 PM To: Struts Users Mailing List (E-mail) Subject: Refreshing Issue. Hi All, I am facing a problem

Re: Refreshing Issue.

2003-07-11 Thread Mark Lowe
opps.. you may loss what it is your displaying if your putting it in the request.. in which case ..this is the action that lists all your records... action path=/displayList type=com.sparrow.struts.DisplayListAction... //your forward then recalls the original action forward name=good

RE: Refreshing Issue.

2003-07-11 Thread Ravi Kora
PROTECTED] Sent: Friday, July 11, 2003 6:26 AM To: Struts Users Mailing List; [EMAIL PROTECTED] Subject: RE: Refreshing Issue. Dear Anurag, This is a general problem. Actually when you refresh your page then the previous action which has called this page(which is in this case

Re: Refreshing Issue.

2003-07-11 Thread Jason Lea
Hi Anurag, Sounds like that when you reset the parameters are being resent, so the action 'add' action is being called again. Struts has a way of dealing with this situation with a token stored in the submit form, here is a link to an earlier thread: http://www.mail-archive.com/[EMAIL