OutputCache and RenderAction cache whole page - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T10:28:04Z http://stackoverflow.com/feeds/question/606962 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/606962/outputcache-and-renderaction-cache-whole-page 4 OutputCache and RenderAction cache whole page Chad Moran 2009-03-03T15:58:32Z 2009-05-13T06:29:36Z <p>I have a ViewPage that contains <code>&lt;% Html.RenderAction&lt;MyController&gt;(c =&gt; c.SidebarStats()); %&gt;</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#607028 2 Answer by Chad Moran for OutputCache and RenderAction cache whole page Chad Moran 2009-03-03T16:12:27Z 2009-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#856377 6 Answer by Haacked for OutputCache and RenderAction cache whole page Haacked 2009-05-13T06:29:36Z 2009-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>