OutPut Cache is the caching technique to cache the static pages in ASP.NET.
Questions tagged [outputcache]
680 questions
0
votes
1 answer
How to exclude sever bound data in Master from the Output Cache in MVC 3?
Im working with MVC 3 and Currently this is my code that needs to not be Cached and it shared among several views
all my pages have this at…
Welcome <%= Context.User.Identity.Name %>

egucciar
- 2,039
- 6
- 23
- 24
0
votes
2 answers
Asp.net MVC 3 Caching
I have a view that makes an ajax call to a action method.
$.ajax({
url: url to action,
type: 'GET',
cache: false,
dataType: 'html',
success: function(result) {
$("#divPatient").html(result);
…

jsteve81
- 735
- 2
- 6
- 16
-1
votes
1 answer
Why would a control's load event still be called when the parent page has an outputcache directive?
I have a page with a user control on it. If I put this outputcache directive on the control, the load event on the control doesn't fire
<%@ OutputCache Duration="3600" VaryByParam="id" %>
But if I put the same directive on the page that the…

Glenn Slaven
- 33,720
- 26
- 113
- 165
-1
votes
1 answer
How can I get retrospective info on how often each of my outputcache fires?
I'd like the ability to find out how often each output attribute/filter is being applied, so I need per action granularity and I would like my solution to be as efficient/scalable as possible. The perfmon counters (application-wide) (as answered…

williamsandonz
- 15,864
- 23
- 100
- 186
-2
votes
1 answer
Stored Cache File Name Change

Hiroshi Rana
- 978
- 2
- 9
- 18