0
votes
0answers
5 views
InvalidCastException: System.Web.UI.PartialCachingControl -> MyCustomControl when OutputCaching
The problem: I am unable to use OutputCaching with my controls which derives from MyCustomControl. Controls are loaded dynamically using definitions from database with Page.LoadControl method.
When I …
2
votes
3answers
61 views
ASP.NET MVC: Problem with OutputCache
Hi,
for my current project it's necessary to generate dynamic CSS...
So, i have a partial view which serves as a CSS deliverer... The controller code looks like this:
[OutputCache(CacheProfile …
0
votes
1answer
17 views
Outputcache - how to determine optimal value for duration?
I read somewhere that for a high traffic site (I guess that is a murky term as well), 30 - 60 seconds is a good value. Obviously I could do a load test and vary the values, but I couldn't find any …
0
votes
0answers
9 views
recent items display - caching technique?
We have an ASP.NET application in which on the master page we have a user control that displays the most recently accessed entities by the user. To prevent database trips for every page load, we have …
0
votes
0answers
4 views
Is this the correct form for OutputCache?
I'm currently using this directive:
<%@ OutputCache Duration="36000" VaryByParam="none" %>
in the (previous) belief that it would cause my page to output cache per different URL.
However, …
0
votes
1answer
72 views
how to remove OutputCache programmatically for ascx?
I have a page1.aspx:
<%@ Register src="uc1.ascx" tagname="UcHead" tagprefix="uc1" %>
and uc1.ascx using the OutputCache:
<%@ OutputCache Duration="18000" VaryByParam="*" %>
How can I click …
0
votes
1answer
27 views
Output Caching pages with user specific information
We have several sites that are mostly content managed using a sql database backend. these sites are most of the time serving up static information unless users change the content by voting or …
0
votes
3answers
37 views
How Do I prepopulate the outputcache in an asp.net web application?
I'm using an outputcache page directive to cache values based on VaryByParam. Is there a way I can prepopulate the cache when the web application starts up for a set of common params, instead of …
0
votes
1answer
74 views
ASP.NET and the Output Cache - how can see if it’s working?
Hi folks,
Problem: I've got an ASP.NET website and i don't believe that my code is getting OutputCached correctly. I'm using IIS7 performance counters to show me the hits or misses a second.
i've …
1
vote
1answer
55 views
ASP.Net MVC - Is it posible to gzip before putting data in cache
Hi guys
Just wondering if anyone knows whether its possible to gzip results before putting the data in the cache...Note I am wanting to use a CompressAttribute I have and the built-in …
2
votes
2answers
107 views
Caching not working right in my ASP.NET MVC website?
Hi folks,
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 …
1
vote
2answers
120 views
Clear ASP.NET OutputCache across web applications
Is it possible to clear the output cache of one asp.net web application from inside another asp.net web application?
Reason being... We have several wep applications structured like...
…
0
votes
0answers
63 views
Can ASP.NET outputCacheProfiles be used with Response.Cache?
When using the @OutputCache directive, you can define cache profiles as follows in web.config:
<system.web>
<caching>
<outputCacheSettings>
<outputCacheProfiles>
…
3
votes
1answer
114 views
.NET: Output caching for WebMethod?
Can I have the return value of a WebMethod outputcached? E.g. if the WebMethod has been called in the last X seconds or minutes, don't actually run the method again--just use the same result as it …
0
votes
3answers
170 views
Abort OutputCache duration programatically in asp.net mvc
Hi,
I'm using the OutputCache attribute to cache my action's html output at the server-side.
Fine, it works, but now I have a situation where the content changes rarely, but when it does, it's …
