on 18/9/2000 8:28 PM, Tage Widsell at [EMAIL PROTECTED] wrote:

> There are instructions on the AOL how to overcome this by sending the
> 'no-cache' header for every page, but that doesn't seem to help.

To defeat "agressive" caching systems such as the AOL one you mention, the
best thing to do is to append a random token to all your URLs, like this:

<cfset token="nc=#randrange(1,999999)#">

<cfoutput>
<a href="newpage.cfm?#token#">
</cfoutput>

If you set the variable in Application.cfm it is straightforward to add the
token to your URLs.

Since the URL is different each time the proxy is forced to retrieve the
page again and the extra parameter is ignored by your templates.

HTH

Rob Keniger                                               [EMAIL PROTECTED]
____________________________________________________________________________

big bang solutions
<http://www.bigbang.net.au>         p +61 7 3311 2733      f +61 7 3311 2744
____________________________________________________________________________


------------------------------------------------------------------------------
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.

Reply via email to