Thanks Atta.  It is reloading the pages now.  

PS.  Is this default behaviour for STRUTS?  And if so,
do you know why?  It seems to me that the default
should should be not to cache pages with dynamic
content.  

Is there a way to configure this in Tomcat or in the
struts config?



--- atta-ur rehman <[EMAIL PROTECTED]> wrote:

> Hi,
> 
> Most probably your page is gettnig cached by the
> browser. try
> 
> <head>
> <META content=0 http-equiv=expires>
> <META content=no-cache http-equiv=Pragma>
> <META content=no-cache http-equiv=Cache-Control>
> <META content=no-store http-equiv=Cache-Control>
> </head>
> 
> or
> 
> <%
> response.setHeader("pragma", "no-cache");
> response.setHeader("Cache-Control", "no-cache");
> response.setHeader("Cache-Control", "no-store");
> response.setDateHeader("Expires", 0);
> %>
> 
> to keep your browser from caching the page and see
> if it works.
> 
> HTH.
> 
> ATTA
> 
> On 11/17/05, Mon Cab <[EMAIL PROTECTED]> wrote:
> >
> >
> > For Example if I type in my browser address bar:
> >
> >
>
http://127.0.0.1:8080/webapp/userSignup.do?action=whatever
> >
> > The first time, I type this in, this invokes the
> > execute method of my Action class (I'm using
> > System.out ("Action execute Invoked") in Action
> > execute to test this). If I then enter the exact
> same
> > url, this method is not getting called.
> >
> > I am not using validator at all!!
> >
> > Can anyone explain what is going on with this?
> >
> >
> >
> >
> > __________________________________
> > Yahoo! FareChase: Search multiple travel sites in
> one click.
> > http://farechase.yahoo.com
> >
> >
>
---------------------------------------------------------------------
> > To unsubscribe, e-mail:
> [EMAIL PROTECTED]
> > For additional commands, e-mail:
> [EMAIL PROTECTED]
> >
> >
> 



        
                
__________________________________ 
Yahoo! Mail - PC Magazine Editors' Choice 2005 
http://mail.yahoo.com


                
__________________________________ 
Yahoo! FareChase: Search multiple travel sites in one click.
http://farechase.yahoo.com

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

Reply via email to