force refreshing of my web site

  • Thread starter Thread starter Mr. x
  • Start date Start date
Specify that you don't want your page to be cached.
You can do that with code like this:

Response.Expires = 0
Response.Cache.SetNoStore()
Response.AppendHeader("Pragma", "no-cache")
 
Back
Top