Comment #3 on issue 28035 by cinematographers: Cache doesn't adhear to No cache options ( google crome ) http://code.google.com/p/chromium/issues/detail?id=28035
In case anybody needs a workaround, using the following will work in Chrome: "no-store" instead of "no-cache" I am aware that according to w3.org the two have different specifications, but as a temporary solution it will work. Mind you, I am not using the tag as a meta tag in html, but pass the following as true response headers in asp (that is not to say that it might work using "no-store" as a meta tag, just haven't tried): Response.Buffer = true; Response.CacheControl = "no-store"; Response.AddHeader( "cache-control","no-store"); Response.Expires = -1; // all other server code or html goes here Response.End(); -- You received this message because you are listed in the owner or CC fields of this issue, or because you starred this issue. You may adjust your issue notification preferences at: http://code.google.com/hosting/settings -- Automated mail from issue updates at http://crbug.com/ Subscription options: http://groups.google.com/group/chromium-bugs
