| Thread | Last Post | Replies |
|
| Cache server | 28 Jul 2005 03:31 GMT | 1 |
1. Is there anything in .NET that we can use a machine as a cache server? 2. How can I make application independent caching? I mean I want all my web applications to share the same cache. Thanks in advance
|
| CacheItemRemovedCallback - removes, but does not process event | 25 Jul 2005 19:31 GMT | 1 |
Hi there, I'm trying to implement CacheItemRemovedCallback in global.asax and am having difficulty implementing refresh of caching. Steps to reproduce problem:
|
| default setting ? | 21 Jul 2005 20:05 GMT | 3 |
Is there any default setting on caching? Can we define caching on application level? TIA
|
| Cache Dataset object problem | 16 Jul 2005 20:00 GMT | 2 |
I have an asp.net web app that is coded to use caching. The intermittent error that I see is the following: ======================= System.Data.DuplicateNameException: A DataTable named 'REG_EmailOptions'
|
| Cache.Remove() in a clustered environment | 16 Jul 2005 13:54 GMT | 6 |
In a clustered environment does Cache.Remove() kill all instances of the cache item, or does it just kill the item from the box that the code is currently executing on? For example, suppose I have two boxes within a cluster. If a request gets
|
| caching driving me crazy, what's going on?? | 16 Jul 2005 12:01 GMT | 3 |
Can anyone advise on this please? Something is happening here and it's driving me mad trying to work out what. For simplicity I've reduced all code to a simple section running in my applications' Page_Load method: (in declarations:
|
| Page not expires | 11 Jul 2005 07:35 GMT | 2 |
I am developing an intranet application in asp.net which contain datagrid, On double click of a row another window will open and retrieving data based on the clicked row, My problem is the pop up window always showing old data.
|
| How to remove the http header Pragma: no-cache | 06 Jul 2005 11:49 GMT | 1 |
We are trying to cache the .xsl files by adding the following in the header "Cache-Control: public, max-age=86400" but it seems we still can't cache .xsl files as somehow IIS is adding "Pragma: no-cache" in the header. Is it possible and if yes how to remove this header for all ...
|
| Fundumental question about Cache intrinsic object | 06 Jul 2005 03:15 GMT | 2 |
May happen follwowing situation ? String S=Cache["T"]; Response.Write(S); // After writing of e.g. 100 bytes S will null because server is running out of resources and IIS clear cache. So output will be
|
| Caching of Rendered Custom Control | 05 Jul 2005 15:20 GMT | 1 |
I have rendered custom Control (MyControl : System.Web.UI.WebControls.WebControl). I need cache some data in Cache["..."] but it is not accessible. Please what I can use for caching ? P.S. I can't use [PartialCaching] because this control handles postback data
|
| How to avoid repeated downloading of .xsl files? | 04 Jul 2005 20:51 GMT | 3 |
We are heavily using .xsl for client-side transformation and these files are always downloaded with every request to a page. Is it possible to some how cache these files on the client side like any other files (for e.g. .js, .img files) so that it dosent gets downloaded ...
|
| Funny/annoying caching? behaviour on dev box | 04 Jul 2005 11:07 GMT | 4 |
We have one dev box here (Win2003 server/Sharepoint/Visual Studio 2003) that is showing some funny issues ... with what appears to be the asp.net page caching. What appears to happen is that when you do a get latest version of the page
|
| Output Caching Problem | 02 Jul 2005 13:41 GMT | 3 |
I would like to enable ASP.NET output caching programmatically. I tried the approach mentioned in the following KB but it does not work: http://support.microsoft.com/default.aspx?id=323290 Based on this article the following two methods should be identical
|
| HttpHandling & Caching | 01 Jul 2005 23:47 GMT | 2 |
I have a page that is being requested from an http handler in the web.config file. I am trying to get this to cache so it just executes the code every half hour. I have tried programatically, but it doesn't seem to work at all, I tried with the following simple code:
|
| Back Button Problem | 01 Jul 2005 08:42 GMT | 2 |
I have 2 pages to my application. The first page is a selection page, and this determines what data is displayed on the second page. The second page contains a datagrid, which is constantly needing to post back to the server to update information. I have seen numerous ways of ...
|