Remover Mozila Browser Cache
-
I am using following code to remove the IE Cache. Response.Cache.SetCacheability(HttpCacheability.NoCache); But i am not able to remove the Mozila Browser Cache Using this Code.
Mahendra Bisht.
Response.Expires = 0;
Response.ExpiresAbsolute = Now;
Response.AddHeader("pragma","no-cache");
Response.AddHeader("cache-control","private");I think you can add all of them in addition to Response.Cache.SetCacheability... Hope this will clears..
Abhishek Sur My Latest Articles Basics on LINQ and Lambda Expressions
Create .NET Templates -
Response.Expires = 0;
Response.ExpiresAbsolute = Now;
Response.AddHeader("pragma","no-cache");
Response.AddHeader("cache-control","private");I think you can add all of them in addition to Response.Cache.SetCacheability... Hope this will clears..
Abhishek Sur My Latest Articles Basics on LINQ and Lambda Expressions
Create .NET Templates