Recently working on my company i’m realize that start to having troubles with some methods which return html based on partial views. The problem was specifically that the changes was not loaded by internet explorer because this browsers has some configures to remains in cache the information and then you cannot see the changes base on the partial view. This changes was not affected in other browsers like firefox and chrome.
The problem was solved modifying the options of internet explorer and checking this options on the browsers client

So. I have a couple of questions
- Is there some configuration or meta tag that i can used in javascript, html or jquery to handle this kind of error without modified the browser configuration.
- Where i can find some documentation about this troubles
If issue is only ajax related…try setting
cache:falsein your ajax options. If using convenience methods like get() or load() can do this globally using $.ajaxSetup()http://api.jquery.com/jQuery.ajax/
http://api.jquery.com/jQuery.ajaxSetup/