Advertisement
Guest User

Untitled

a guest
Dec 19th, 2014
147
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. Response.Cache.SetNoStore()
  2. Response.Cache.SetCacheability(HttpCacheability.NoCache)
  3. Response.Buffer = True
  4. Response.Cache.SetAllowResponseInBrowserHistory(False)
  5. Response.ExpiresAbsolute = DateTime.Now.AddDays(-1)
  6. ' 1500 seconds is 25 minutes
  7. Response.Expires = -1500
  8. Response.CacheControl = "no-cache"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement