We need you!

We're working hard on the next version of Developer Fusion. Let us know what you think we should be up to!

Members

Technology Zones

Articles

Hosted By

MaximumASP

Info

Rated
Read 24,384 times

Related Categories

Preventing Caching

A common problem when creating ASP pages is that although the data usually comes 'live' from the database, the browser often caches that information. Although this can help to reduce the bandwidth usage for your site, it also means that if the user has loaded the page before, he/she could be viewing out of date or inaccurate information.

There are a number of ways around this. First, you can set

Response.Expires = -1

which means that the page will always expire, and the browser will load a new copy. Alternatively, you can set a date on which the page will expire:

Response.ExpiresAbsolute = "5 December 2001"

or, simply the number of seconds in the future:

Response.Expires = 1000 'expires after 1000 seconds

However, in situations such as a shopping cart, even this is not enough. You will find that if the user presses the back button on their browser, more often that not, it doesn't bother re-loading the page... which can cause problems if the user has just completed the order, and then goes back to a full shopping cart. To get around this, there is one last trick... add this code:

'date in the past...
Response.AddHeader "Expires", "Mon, 26 Jul 1997 05:00:00 GMT"
'always modified
Response.AddHeader "Last-Modified", Now & " GMT"
'HTTP/1.1
Response.AddHeader "Cache-Control", "no-cache, must-revalidate"
'HTTP/1.0
Response.AddHeader "Pragma", "no-cache"
'last ditch attempt!
Response.Expires = -1

This code adds a number of fields to the header information sent to the browser, and seems to be effective whatever the browser!

James first started writing tutorials on Visual Basic in 1999 whilst starting this website (then known as VB Web). Since then, the site has grown rapidly, and James has written numerous tutorials, articles and reviews on VB, PHP, ASP and C#. In October 2003, James formed the company Developer Fusion Ltd, which owns this website, and also offers various development services. In his spare time, he's a 3rd year undergraduate studying Computer Science in the UK. He's also a Visual Basic MVP.

Comments

  • Posted by James Crowley on 04 Mar 2003

    ... as the cache resides on the client, it is entirely up to the users browser what it does - fortunately the server can't tell a client "now delete files xyz from your hard disk" - it doesn't even ha...

  • Deleting all cache

    Posted by cm123 on 04 Mar 2003

    Although this code deletes cache for an individual page, I was wondering if there was a way to delete all page cache when a user logs out. Does anyone have any ideas on how this can be done instead of...