Back button problem

2006-02-04 Thread Ranganathan Srinivasan
Hi, I am facing a peculiar problem with back button. When I click back button o= n my application, the page is reloaded instead of showing me the values which I entered in form. Can you tell me what can be done to prevent the reloadin= g of the page. Regards, Ranganathan

Re: Back button problem

2006-02-04 Thread Deepa Khetan
ur page will be reloaded if u have disabled caching of the pages. Have u done it? On 2/4/06, Ranganathan Srinivasan [EMAIL PROTECTED] wrote: Hi, I am facing a peculiar problem with back button. When I click back button o= n my application, the page is reloaded instead of showing me the

Re: Back button problem

2006-02-04 Thread Ranganathan Srinivasan
Hi, Thanks for your response, I have not done anything like disabling cache in my jsp. Any idea why it is occuring ? Regards, Ranganathan On 2/4/06, Deepa Khetan [EMAIL PROTECTED] wrote: ur page will be reloaded if u have disabled caching of the pages. Have u done it? On 2/4/06,

Re: Back Button Problem..

2005-12-25 Thread Srinivasu Gandu
, December 16, 2005 1:46 PM Subject: Re: Back Button Problem.. Thanks for your time.But i can't use Appuse at this time because my project ready for production(Except this problem). Priya On 12/16/05, Garner, Nigel M wrote: You could always use a ServletFilter to make sure

Re: Back Button Problem..

2005-12-22 Thread Marcelo Morales
Hello On Dec 16, 2005, at 10:48 AM, Priya Saloni wrote: Hi there, I facing a BIG problem in my struts based application.When i logout my website and hit back button it showing a page like the following // Warning: Page has Expired The page you requested was created using information you

Re: Back Button Problem..

2005-12-22 Thread Priya Saloni
Hi Marcelo, //You solve this issue with a redirtect-after-post hack on the logoff //action. Thats what iam doing in the following code.. request.getSession().removeAttribute(sessionState); request.getSession().invalidate(); response.sendRedirect(/BMS/logout_success.jsp); //This you solve by

Re: Back Button Problem..

2005-12-22 Thread Marcelo Morales
Hello again On Dec 22, 2005, at 3:27 PM, Priya Saloni wrote: Hi Marcelo, //You solve this issue with a redirtect-after-post hack on the logoff //action. Thats what iam doing in the following code.. request.getSession().removeAttribute(sessionState); request.getSession().invalidate();

Re: Back Button Problem..

2005-12-21 Thread Srinivas Jadcharla
Users Mailing List user@struts.apache.org Cc: Garner, Nigel M [EMAIL PROTECTED] Sent: Friday, December 16, 2005 1:46 PM Subject: Re: Back Button Problem.. Thanks for your time.But i can't use Appuse at this time because my project ready for production(Except this problem). Priya

Re: Back Button Problem..

2005-12-19 Thread Priya Saloni
- From: Priya Saloni [EMAIL PROTECTED] To: Struts Users Mailing List user@struts.apache.org Cc: Garner, Nigel M [EMAIL PROTECTED] Sent: Friday, December 16, 2005 1:46 PM Subject: Re: Back Button Problem.. Thanks for your time.But i can't use Appuse at this time because my project ready

Back Button Problem..

2005-12-16 Thread Priya Saloni
Hi there, I facing a BIG problem in my struts based application.When i logout my website and hit back button it showing a page like the following // Warning: Page has Expired The page you requested was created using information you submitted in a form. This page is no longer available. As a

Re: Back Button Problem..

2005-12-16 Thread Priya Saloni
appfuse projected (see struts.sourceforge.net) provide a downloadable implementation. Thanks Nigel -Original Message- From: Priya Saloni [mailto:[EMAIL PROTECTED] Sent: 16 December 2005 14:49 To: Struts Users Mailing List Subject: Back Button Problem.. Hi there, I facing a BIG

Re: Back Button Problem..

2005-12-16 Thread Michael Jouravlev
For some reason your redirect does not work. Maybe session is not invalidated as well? Is this piece of code ever evaluated? Michael. On 12/16/05, Priya Saloni [EMAIL PROTECTED] wrote: Hi there, I facing a BIG problem in my struts based application.When i logout my website and hit back

Re: Back Button Problem..

2005-12-16 Thread Martin Gainty
: Back Button Problem.. Thanks for your time.But i can't use Appuse at this time because my project ready for production(Except this problem). Priya On 12/16/05, Garner, Nigel M [EMAIL PROTECTED] wrote: You could always use a ServletFilter to make sure that users never have access to pages

Re: Back Button Problem..

2005-12-16 Thread Michael Jouravlev
] To: Struts Users Mailing List user@struts.apache.org Cc: Garner, Nigel M [EMAIL PROTECTED] Sent: Friday, December 16, 2005 1:46 PM Subject: Re: Back Button Problem.. Thanks for your time.But i can't use Appuse at this time because my project ready for production(Except this problem). Priya On 12

RE: logout/Back Button problem

2005-11-23 Thread R.Vijayaraghavan
-Original Message- From: Michael Jouravlev [mailto:[EMAIL PROTECTED] Sent: Tuesday, November 15, 2005 9:18 PM To: Struts Users Mailing List Subject: Re: logout/Back Button problem Firefox? Add no-store: This does not work in IE. Any other thing which can be tried? regards

logout/Back Button problem

2005-11-15 Thread Srinivas Jadcharla
Hi There, I have a problem logging out my Struts Based Web Application.Here iam giving the code in Logout Action.. request.getSession().removeAttribute(ssn); request.getSession().removeAttribute(pin); request.getSession().removeAttribute(parentrole); request.getSession().invalidate();

Re: logout/Back Button problem

2005-11-15 Thread Michael Jouravlev
Firefox? Add no-store: response.setHeader(Cache-Control, no-cache, no-store); On the other hand, SSL + no-cache should work for Firefox as well, hmm... On 11/15/05, Srinivas Jadcharla [EMAIL PROTECTED] wrote: Hi There, I have a problem logging out my Struts Based Web Application.Here iam

Back Button Problem

2004-09-12 Thread venkat raju
Hi All, I have got a strange problem. I am using Struts 1.1 and tiles. When I click on the back button, I want the page to be loaded from cache. But to my surprise, its behaving strange. For instance, I open a new browser instance and I open Page1. Then I submit this page to get Page2.

Re: Back Button Problem

2004-09-12 Thread venkat raju
Hope the following helps to get to the root of the problem; I am using post method to submit the form. And sometimes when I click on back button, it says Handler parameter not found. Is it some known bug in Struts or Tiles? --- venkat raju [EMAIL PROTECTED] wrote: Hi All, I have got a