Tagged Questions
The varybyparam tag has no wiki summary.
2
votes
2answers
632 views
Caching not working right in my ASP.NET MVC website?
i'm trying to use OutputCaching in my ASP.NET MVC website. Problem is, when i try and change the value of one my querystring params, it's returning the data for the first item that was requested!
...
1
vote
4answers
844 views
How to implement VaryByCustom caching?
I'm trying to implement functionality to cache certain pages depending on the host. This is because I can have multiple versions of a page which have the same parameters, and where the only difference ...
1
vote
1answer
515 views
VaryByCustom not working for session variable
I'm using output cache for a web site with login system. I have global pages which can be accessed by every user. These pages are cached and also use a master page.
<%@ OutputCache Duration="3600" ...
1
vote
0answers
116 views
Issue with ASP .Net MVC 2.0 Caching
I am using OutputCache on an Action like this:
[OutputCache(Duration = 14400, VaryByParam = "none")]
public ContentResult Catalog()
{
return ...;
}
and my RegisterRoutes function in Global.asax.cs ...
1
vote
1answer
304 views
How do I cache at both client & server when VaryByParam != “none”?
I'm looking for a way to cache a page at both the client and the server while varying the server's output cache by a querystring parameter "Version".
With this tag:
<%@ OutputCache Duration="10" ...
0
votes
2answers
298 views
Why does OutputCache attribute require the VaryByParam parameter to be set?
I've done zero research on this, I'm just curious.
The OutputCacheAttribute class in ASP.NET MVC requires a value for Duration and VaryByParam. I get why Duration is required, but not VaryByParam.