I\'m having a serious issue with Internet Explorer caching results from a JQuery Ajax request.
I have header on my web page that gets updated every time a user navig
If you are calling ashx page you can also disable caching on the server with the following code:
context.Response.Cache.SetCacheability(HttpCacheability.NoCache); context.Response.Cache.SetRevalidation(HttpCacheRevalidation.AllCaches);