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 using ASP.NET MVC, it is enough to add this line on top of the controller action:
[OutputCache(NoStore=true, Duration = 0, VaryByParam = "None")] public ActionResult getSomething() { }