I\'m having an issue with a page in internet explorer. I have an ajax call that calls a form, in other browser, when I click the link it passes in the controller and load co
If you are using the Ajax Helper, you can set the AllowCache parameter to false like this:
AllowCache
false
@Ajax.ActionLink("AjaxCall", "AjaxMethod", "DeconflictedFiles", new { }, new AjaxOptions { AllowCache = false, })
And IE won't cache the results of the call.