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" path="/displayList.do" redirect="true" />

// in your action
return (mapping.findForward("good");

would be one way of doing what you want....


On Friday, July 11, 2003, at 11:27 AM, Mark Lowe wrote:


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 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, which
it should not do.


I have added the following line in my Action Class
        response.setHeader("pragma","no-cache");

I have also added the following statement in the struts-config.xml
        <controller nocache="true"/>

But still it is adding the duplicate record in the database when i press F5.
Any solution how to overcome this problem..


Thanks and Regards,
Anurag Garg


--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Reply via email to