Re: [Q] How to implement SSL Logout Page ?

From: Pierre-Luc Simard (plsimard@jfactory.net)
Date: 11/08/02


From: plsimard@jfactory.net (Pierre-Luc Simard)
Date: 8 Nov 2002 12:51:08 -0800

Let's get things clear simples on Caching
------------------------------------------

It's not possible to be 100% sure a browser does not cache pages. This
is left to the software developper to do the right thing with cache
control information. You can however do the following to ensure that
most of the browser do not cache your pages:

1) In the html page place an META HTTP-EQUIV tag that will set the
experiation to 0 (do not cache). like so:

<meta http-equiv="Expires" content="0">

2) If you can send header (in an CGI) you can also place the folowing
header and try to force the data not to be cached.

Expires: Thu, 13 Dec 1969 10:29:00 GMT

I recommand you read on cache control in http/1.1 (read the RFC). this
simple tricks I gave you came in part from their.

Pierre-Luc



Relevant Pages

  • Re: Squid Overkill? (Speed Up Web Surfing)
    ... Each user's browser already maintains a cache of web ... Squid cache. ... The first local user to access a web site on a distant web server will ...
    (comp.unix.bsd.freebsd.misc)
  • RE: Avoid Cache in Mobile Web Page
    ... page in the cache, but the problem is how if there are so many different ... > mobile internet tool kit and ASP.net. ... > I have tried every code or script,but it didn't work.I think the answer is related with machine configjust like Simon Calver said. ... More specifically do you know the browser and version on ...
    (microsoft.public.dotnet.framework.aspnet.mobile)
  • RE: Disable cache in mobile Web Page
    ... page in the cache, but the problem is how if there are so many different ... > mobile internet tool kit and ASP.net. ... > I have tried every code or script,but it didn't work.I think the answer is related with machine configjust like Simon Calver said. ... More specifically do you know the browser and version on ...
    (microsoft.public.dotnet.framework.aspnet.mobile)
  • Re: Serious cache problem - Page_Load get never get called !!!
    ... > cache the page. ... That's correct -- the HTTP spec distinguishes between caches and histories. ... > meta tag may help catch more browsers than just the response header ... you name any modern browser for which a META tag works, ...
    (microsoft.public.dotnet.framework.aspnet)
  • Re: Problem forcing pages not to cache.
    ... Any browser that refuses to honor any of them won't listen to you anyway as regards to caching. ... It wouldn't hurt, however, to try to do cache control at the level where it logically belongs, namely HTTP level, in HTTP headers. ... this could be effective against some proxy caches (which won't even look at any tags). ...
    (alt.html)