OutputCache and RenderAction cache whole page - Stack Overflow most recent 30 from stackoverflow.com2009-12-15T10:28:04Zhttp://stackoverflow.com/feeds/question/606962http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/606962/outputcache-and-renderaction-cache-whole-page4OutputCache and RenderAction cache whole pageChad Moran2009-03-03T15:58:32Z2009-05-13T06:29:36Z
<p>I have a ViewPage that contains <code><% Html.RenderAction<MyController>(c => c.SidebarStats()); %></code>. On the controller action for the action SidebarStats I have an OutputCache action filter to cache only that part of the page. However, the whole page is getting cached and not just that action.</p>
<p>I remember seeing somewhere that this might be a bug with ASP.NET MVC though I'm not sure. I'm currently using ASP.NET MVC RC1, IIS7, Windows Server 2008 and .NET 3.5 SP1.</p>
http://stackoverflow.com/questions/606962/outputcache-and-renderaction-cache-whole-page/607028#6070282Answer by Chad Moran for OutputCache and RenderAction cache whole pageChad Moran2009-03-03T16:12:27Z2009-03-03T16:12:27Z<p>According to Microsoft this is a known bug with no known fix. Only workarounds suggested are to create your own OutputCache action filter.</p>
http://stackoverflow.com/questions/606962/outputcache-and-renderaction-cache-whole-page/856377#8563776Answer by Haacked for OutputCache and RenderAction cache whole pageHaacked2009-05-13T06:29:36Z2009-05-13T06:29:36Z<p>I blogged a <a href="http://haacked.com/archive/2009/05/12/donut-hole-caching.aspx" rel="nofollow">solution to this problem here</a>. It's simple, but it only works if you're using the WebFormViewEngine. We will look hard into figuring out what it will take to make this work for all view engines.</p>