| totally deactivate cache? (2 replies) |
| ASPFriends.com 'aspngcache' list |
| Moved from [aspngfreeforall] to [aspngcache] by Charles M. Carroll charlesmarkcarroll@yahoo.com Hello, I would like to totally deactivate the cache for some asp.net/c# pages. For security reasons, I do not want even some of the icons wich are displayed on my pages to be stored in some temporary directory. I've seen ways not to cache a page, in wich the client/proxy will always reload the page, but... |
|
| NOT ANSWERED: Custom control caching question (2 replies) |
| ASPFriends.com 'aspngcache' list |
| I have built a custom control that I have compiled into a dll and placed in the bin folder and registered on an .aspx page. All works fine. The control displays one random record from a database based on certain internal criteria, meaning I pass no information to the control. I want to cache the output of the control and have it expire at midnight, every night, so that a new record is displayed ev... |
|
| What happen to "CacheItemPriorityDecay" Enum? (2 replies, VIP) |
| ASPFriends.com 'aspngcache' list |
| Hi All, I've used the CacheItemPriorityDecay Enum with the Cache.Insert method in Beat2. Now this enum is gone. Any idea what happened? Thanks, Srinivasa Sivakumar |
|
| How long we can Cache? (16 replies, VIP) |
| ASPFriends.com 'aspngcache' list |
| To Cache, all we need is to add the following directive at the top of our ASPX page %@ OutputCache Duration "1000" VaryByParam "none" % And this 1000 is seconds, right? (around 16 minutes) How large can be this duration? If I give a very big value, then the will be cached for a very long time, right? If it is cached for very long time, do we have any memory/performance issues? Thanks, Das. |
|
| Custom control caching question (3 replies) |
| ASPFriends.com 'aspngcache' list |
| Moved from [aspngfreeforall] to [aspngcache] by Douglas Reilly doug@accessmicrosystems.net I have built a custom control that I have compiled into a dll and placed in the bin folder and registered on an .aspx page. All works fine. The control displays one random record from a database based on certain internal criteria, meaning I pass no information to the control. I want to cache the output of th... |
|
| Caching woes (6 replies) |
| ASPFriends.com 'aspngcache' list |
| Moved from [aspngfreeforall] to [aspngcache] by Marcie Jones marciejones@yahoo.com I have an aspx that streams an image to the client. That image is created dynamically, so I decided to cache. On my dev machine and on the QA server, the cache yields great results. However, when I add exactly the same Cache directive on the production server, there is no change, as if caching was disabled. Any thou... |
|
| Cache (6 replies) |
| ASPFriends.com 'aspngcache' list |
| I'm building a WebService to return partial pages. I'm trying to use the Cache with little success. What namespace am I missing. Thanks for any help. Error Message... The name 'Cache' does not exist in the class or namespace 'yyyZWs.About' Code... protected static string strGfw; [WebMethod] public string Gfw() { // Is it in the Cache strGfw (string)Cache["GfwAbout"]; // Found return the Cache Copy... |
|
| Fragment Caching Strategy (2 replies) |
| ASPFriends.com 'aspngcache' list |
| Hi, In a common Content Management solution, content is created in a back end application and cached in the front end. Meanwhile, if the content is changed in the back end, the user is able to selectively flush this content (ie. remove it from the cache) in order for the new version to be displayed. (That's how we do it in Vignette !) After looking at the fragment caching in .NET, I can't see an o... |
|