Wednesday 7 July, 2010

DISABLE BROWSER CACHING

Response.Cache.SetExpires(DateTime.UtcNow.AddMinutes(-1));
Response.Cache.SetCacheability(HttpCacheability.NoCache);
Response.Cache.SetNoStore();

No comments:

Post a Comment