// Copied from https://aspnet.codeplex.com/workitem/8100
// Vote number : 2
If you do a simple Ajax.Begin form in MVC the jquery.unobtrusive-ajax.js file makes a JQuery Ajax call but does not set the cache option to false.
Chrome etc never cache ajax requests but IE7 does so it does not even attempt to call the url requested. It can be solved by setting output cache options against the controllers methods but would be better if the asyncRequest method specifically set options.cache=false
// Vote number : 2
If you do a simple Ajax.Begin form in MVC the jquery.unobtrusive-ajax.js file makes a JQuery Ajax call but does not set the cache option to false.
Chrome etc never cache ajax requests but IE7 does so it does not even attempt to call the url requested. It can be solved by setting output cache options against the controllers methods but would be better if the asyncRequest method specifically set options.cache=false