AJAX, classic asp and IE7 cached output
Tuesday, June 10th, 2008I 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