ASP.NET MVC Extensible Donut Caching brings donut caching to ASP.NET MVC 3 and later. The code allows you to cache all of your page apart from one or more Html.Actions which can be executed every request. Perfect for user specific content.
I want to cache a controller/action page, but I do not want to cache a certain RenderPartial since it display's login info. I couldn't find an overloaded parameter on RenderPartial. Is this possible?
I want to cache a controller/action page, but I do not want to cache a certain
RenderPartial
since it display's login info. I couldn't find an overloaded parameter onRenderPartial
. Is this possible?