Russell Tyndall's Tech Blog

The Shizzle Fa Rizzle at Acceleration.net

Home Contact Syndicate this Site (RSS 2.0) Syndicate this Site (Atom) Login
  80 Posts :: 6 Stories :: 69 Comments :: 19 Trackbacks

News

Listed on BlogShares

Archives

Post Categories

Image Galleries

Favorite Web Locations

Tech Tool Links


This MS page descibes the error. One thing they dont mention is a solution. They do say that:

CAUSE
This issue occurs if the server sends a "Cache-control:no-store" header or sends a "Cache-control:no-cache" header.
What they dont mention is that it isnt only the "Cache-contol" header; the "Pragma:no-cache" header also causes this problem.

A SOLUTION
Remove all of these headers, and make sure that you have the following headers set:
Response.AddHeader("Pragma","private");
Response.AddHeader("Cache-control","private, must-revalidate");
posted on Wednesday, October 12, 2005 5:03 PM