Tagged Questions
Donut caching is a type of caching where most of the content is cached, with a little 'hole' of content that is not cached.
10
votes
3answers
1k views
Can I use [CompressFilter] in ASP.NET MVC without breaking donut caching
I am trying to get [CompressFilter] working with donut caching and running into issues.
What happens is that the whole page gets cached and not just the donut. The source for the CompressFilter I am ...
8
votes
1answer
569 views
What's the current practice for partial caching in ASP MVC2?
My website pages are composed of two kinds of content. The first is variable between users but constant for all pages. The second is constant across users, but variable between pages. This is a common ...
7
votes
1answer
389 views
Turn off page-level caching in a user control
I have a page with the following caching defined:
<%@ OutputCache Duration="60" VaryByParam="None" %>
I have a user control inside that page that i don't want cached. How can I turn it off ...
6
votes
3answers
2k views
Is Donut caching available in ASP.NET MVC 3
ASP.NET MVC 3 (final) was released today. When this version was in its infancy I remember reading on codeplex that donut caching was being considered. Does anyone know if this made it into V3? I ...
5
votes
2answers
332 views
ASP .NET - Substitution and page output (donut) caching - How to pass custom argument to HttpResponseSubstitutionCallback delegate
I would like to use substitution feature of donut caching.
public static string GetTime(HttpContext context)
{
return DateTime.Now.ToString("T");
}
...
The cached time is: <%= ...
5
votes
4answers
680 views
Donut Caching Tutorials
Can someone point out a couple of good quality tutorials/pages for donut caching? Like everything else on the web, you can google a million things, but several of the articles I've found are a bit ...
5
votes
4answers
600 views
How do I 'donut cache' in ASP.NET MVC for something more than a date
All the examples for donut caching I've seen are just like this :
<%= Html.Substitute( c => DateTime.Now.ToString() )%>
Thats fine if I just want the date, but what other options are ...
3
votes
2answers
156 views
ASP.NET 'Donut Caching' not working
I have an ASP.NET page where I am trying to do some output caching, but ran into a problem.
My ASPX page has
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs" ...
2
votes
2answers
472 views
How to use ASP.Net server controls inside of Substitution control?
while the method we use in Substitution control should return strings, so how is it possible to use a donut caching in web forms on a server control which should be rendered server side?
for example ...
2
votes
2answers
2k views
ASP.NET MVC 2 disable cache for browser back button in partial views
I am using Html.RenderAction<CartController>(c => c.Show()); on my master Page to display the cart for all pages. The problem is when I add an item to the cart and then hit the browser back ...
2
votes
2answers
281 views
Is there a way to access the current session from within a substitution control?
Looks like context parameter of asp:net substitution control method is missing the current session once the page is output cached.
Aside from getting the substitution control's content thru ajax or ...
1
vote
1answer
67 views
MVCDonutCaching - Issues with child action when parent is not donut cached
I am using the awesom MVCDonutCaching package from Nuget in order to cache entire pages while leaving certain portions uncached. The process is simple and everything works as it should:
I am caching ...
0
votes
2answers
109 views
I need help doing a Regex.Replace with multiple results
I'm building a custom page caching utility that uses a syntax like {Substitution:GetNonCachedData} to get data that's not supposed to be cached. The solution is very similar to the built-in <@ ...
0
votes
1answer
272 views
Prevent Image Caching in MVC 2 C#
I have a profile image upload page, where users can overwrite their previous profile picture.
But when I return the users to their profile page the browser has cached their previous image and only an ...