AJAX, classic asp and IE7 cached output
This post was written 4 years ago.
Tue, 10 Jun 2008
I noticed that IE7 was caching asp content loaded via AJAX. These asp headers seem to solve the issue:-
Response.CacheControl = "no-cache"
Response.AddHeader "Pragma", "no-cache"
Response.Expires = -1
Comments
Response.CacheControl = "no-cache"
Response.AddHeader "Pragma", "no-cache"
Response.Expires = -1