| Thread | Last Post | Replies |
|
| Putting an instance of an 'internal' class in the App cache | 07 Apr 2004 17:04 GMT | 1 |
I am creating a bunch of classes for use by a 3rd party, and I want to keep some of my classes internal or private. I have one class that I'd like only my own classes to be able to use, but instances of my class really should go in the application cache. Are there any issues with ...
|
| Session state deallocations | 07 Apr 2004 02:15 GMT | 1 |
I'm using session state to store a dataset for a few different pages. While this works well I am concerned about the lifetime of the data. Specifically I'm wondering if there is any way I can detect when a user leaves a page so that I can deallocate a session variable?
|
| Caching Problem - Cache being overridden | 05 Apr 2004 14:41 GMT | 2 |
I am having a problem with caching : I have a page that has several drop down lists on it. The data for these lists are stored in a SQL server database. At the moment, when the page loads, I loop through the DB table adding the items to a System.Web.Ui.WebControls.ListItem array. ...
|
| Disabling client side cache via code | 04 Apr 2004 01:55 GMT | 3 |
Using VS 2003, I create a new web application. In the Page_Load of the main page I insert: Response.Cache.SetCacheability(HttpCacheability.NoCache); Response.Cache.SetExpires(new DateTime(1990, 1, 1));
|
| confusion about context | 04 Apr 2004 01:25 GMT | 1 |
who can tell the detailed difference of: HttpRuntime.Cache, Context.Cache, HttpContext.Current.Cache
|
| Help with Using a DataSet in Session State | 04 Apr 2004 01:21 GMT | 1 |
Hello... I need some help/advice regarding using a dataset in session state. When a request first comes to my ASP.NET application, I have code in the Session_Start event to query the user table, which return a dataset. I then add this dataset to a Session variable. This works, ...
|
| C#-Com object accessing dot.net caching | 02 Apr 2004 23:35 GMT | 5 |
I want to use to .net caching for my old asp pages. I've made a C# COM-interop object that I was hoping would be able to do this. The com object itself works fine. The idea was to just call the C# Com object from my old pages, and allow the C# guy to use .net caching.
|
| Data Tier Optimization | 02 Apr 2004 21:15 GMT | 2 |
I am building a web application that will have a single form that will be populated with data from 8-10 tables. The easiest way to implement the data tier would be to use DataSets and Data Adapters for each table. But, is that the optimal approach?
|
| Caching xml files | 02 Apr 2004 08:39 GMT | 4 |
This has probably already been asked, but in the situation of accessing XML flat files from an ASPNet application, whether for deserializing into custom classes or DOM access, are those xml flat file resources cached? In our situation, using xml flat files as our dataset for an ...
|
| Multi-threaded access to Cache object | 01 Apr 2004 21:13 GMT | 4 |
http://www.google.com/groups?hl=en&lr=&ie=UTF-8&oe=UTF-8&frame=right&th=a1e21baa ba5303d7&seekm=8b702e36.0403261601.32f47810%40posting.google.com#link2 The poster of this thread got me thinking. He says that "Any time you can have multiple threads, especially multiple page requests,
|