up vote 1 down vote favorite
share [g+] share [fb]

after digging into this topic and having the requirement, that a single page should be totally cached, except for a

Html.RenderPartial("LogOnUserControl");

i couldn't find any working solution on this... the only "its getting warmer" solution i found was this one , which unfortunately is not working with a "partial view", which requires the

Request.IsAuthenticated

attribute ( the fakeContext is losing this info )

Have you heard of any ( other ) solution to cache a whole page except for a single "RenderPartial" call?!

link|improve this question

66% accept rate
1  
what exactly is the issue? I'm a little confused. – Alastair Pitts Mar 20 '10 at 11:19
Sorry, my problem is that it seems to be impossible to create cached pages, where only some parts are replaced on each request... – David Mar 20 '10 at 15:28
feedback

1 Answer

Phil Haack has a great article on this that he calls Donut Caching.

Check it out at http://haacked.com/archive/2008/11/05/donut-caching-in-asp.net-mvc.aspx

link|improve this answer
Checked it already... this does also not work for "RenderPartial" and when i did some tests on it, it seems to me that the "Request" object was also cached ( or at least the last "Request.IsAuthenticated" value ) – David Mar 20 '10 at 15:31
ASP.NET's implementation of Donut Caching is very much tied to WebForms, so the MVC pipeline does not support it. Note that the Html.Substitute() method was removed in MVC 2 Futures because it simply does not work correctly. – Levi Mar 21 '10 at 1:28
I didn't realize this Levi - thanks for the heads up – nikmd23 Mar 21 '10 at 16:18
Ok, and there isn't any alternative?! – David Mar 21 '10 at 18:03
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.