| Thread | Last Post | Replies |
|
| Cache information | 30 Sep 2004 09:41 GMT | 4 |
I am currently trying to gather all information on my cache collection. I am looping through the System."Collection.DictionaryEntry" class looking for all the information i can get. Currently i only seem to be able to get the Key and the Value.
|
| ASP Net not working correctly... | 28 Sep 2004 16:03 GMT | 4 |
Im having an issue with my Win2k box. When I try to access my intranet which has been developed using ASP.NET I get the following error message: Server Error in 'test' application
|
| maximizing memory available for cache | 28 Sep 2004 10:29 GMT | 30 |
Our .NET 1.1 application server has 2GB RAM and is running Windows Server 2003 Standard Edition. The IIS 6 application pool that runs our app is set for "Memory Recycling - Maximum Used Memory: 800MB" (I assume this is the point at which .net will
|
| Repost: OutOfMemory exceptions | 24 Sep 2004 13:53 GMT | 2 |
The following script (which must be included in a .aspx file): void Page_Load(object sender, System.EventArgs e) { int count = 2000; int size = 1000000;
|
| Frustrating caching issue / image upload | 23 Sep 2004 08:31 GMT | 3 |
Hello - I just posted this message in a different group, before I found this much more specific group. I've seen similar questions, but have yet to find a working answer. -----------------------------
|
| Disallowing the Caching of Pages | 21 Sep 2004 15:57 GMT | 1 |
I am Disallowing the Caching of Pages.but this work in some machines..but not in others.Below is my code. <% Response.CacheControl = "no-cache";
|
| Maintaining one cache object per user?? | 21 Sep 2004 15:29 GMT | 3 |
In my application i would like to maintain cache object per user?so in my code i have written code as Cache objUser = new Cache(); and objUser.Insert("key","value);
|
| How to store a Dataset | 19 Sep 2004 22:50 GMT | 1 |
If a DataSet is needed to stored for later use in the session, should I use Session object or Cache object? Will Cache has any problem in a web farm situation?
|
| Caching Application Block | 15 Sep 2004 10:22 GMT | 1 |
Anyone using this? I originally thought just use the ASP net cache for web apps and the CAB for Win apps but I suppose you could use the CAB for both. Ideas, opinions? TIA
|
| Where are cached objects stored? | 13 Sep 2004 14:47 GMT | 6 |
It may sound strange, but I am not able to find any technical material that talks about where the cached objects are stored. Are they stored only in memory or somewhere in form of disk files? MSDN and many articles only talks about the grammar and its usage scenarios.
|
| 15 second and forward | 09 Sep 2004 01:45 GMT | 2 |
I would like to ask if someone knows how could be accomplished that: When a user goes to WebForm1, he/she stays ther for 15 sec and that automatically goes to WebForm2? Thank you in advance!
|
| Session state lost after accessing database | 03 Sep 2004 08:11 GMT | 8 |
I have an ASP.NET application that connects to an Access database. Everything works fine except for the Session object. Data in the session object is lost after I've made a call to the database. To test, I've created two test aspx pages. Test1.aspx contains two buttons.
|