From: "Keng Wong" <[EMAIL PROTECTED]>
> Try adding these as well:
> 
> $page.setHttpEquiv("Cache-Control", "no-store")
> $page.setDateHeader("Expires", "-1")
> 
> -keng wong

I was able to find some very helpful information from those
excellent microsoft people :-)

http://support.microsoft.com/support/kb/articles/Q234/0/67.ASP

It turns out that HTTP-EQUIV is a not so great way of setting 
the equivalent of the HTTP headers and that IE 4 & 5 actually
ignore HTTP-EQUIV "Cache-control" tags!

I'm giving:

<META HTTP-EQUIV="Expires" CONTENT="-1">

a shot, but if that fails I'll try Costa's suggestion of including
a dummy path info variable.

Is there any reason why Turbine does not provide direct access 
to HttpServletResponse.setHeader()?  I guess there is nothing
to stop me from going:

$data.getResponse.setHeader("Cache-control", "no-cache")

in my default layout.  I'll probably try this before the dummy 
path info variable solution.


Thanks everyone for your comments.

Scott



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

Reply via email to