Tagged Questions

4
votes
4answers
436 views

Application_End() cannot access cache through HttpContext.Current.Cache[key]

I want to be able to maintain certain objects between application restarts. To do that, I want to write specific cached items out to disk in Global.asax Application_End() function and re-load them ...
3
votes
1answer
76 views

how long, by default does stuff stay in httpcache if i don't put an explicit expiration?

i have the following code to cache some expensive code. private MyViewModel GetVM(Params myParams) { string cacheKey = myParams.runDate.ToString(); var cacheResults = ...
1
vote
2answers
468 views

cache problem in asp.net with c#

I am using the fileuplaod control to upload the images. For this I used to stored it in the cache for 2 hours in byte format and show this image using the HttpContext in the .ashx file. For some ...
0
votes
1answer
168 views

HttpContext.Cache - Per Request or per App Domain?

Looking at the MSDN doc for .NET 2.0 of the HttpContext.Cache object it says this: The Cache for the current HTTP request. But looking at the .NET 3.0 version version it says: The Cache for ...