I've a simple question about unexpected view caching in chrome. I've Asp.Net MVC web-app. On my search page I've a reset button which does a page refresh using a javascript function (simple window.location.href logic). All is good and working fine in IE as well as FF.
When I started testing in google Chrome I'm getting some unexpected view caching - in short the browser is showing cached view result.
I tried the following on top of my action but no effect in chrome -
[OutputCache(NoStore = true, Duration = 0, VaryByParam = "*")]
A simple F5 will also refresh/reset the page to original state but my js function based refresh is not working in Chrome. Any idea?
Extra: Does chrome understand table / div width in % done via style or inline attribute? I got some unexpected hiccups while testing.