| Thread | Last Post | Replies |
|
| Binding ASP with MS Access database | 30 May 2004 19:53 GMT | 1 |
When i make an ASP page to add data in MS Access db, the user when adds information in the relevant fields of the ASP page and clicks ADD the info is not updated in the database. Instead it gives a page not found error message. ---
|
| Application level caching and callbacks | 30 May 2004 11:30 GMT | 2 |
I'm trying to put a xml file in the Cache to be shared for the whole application. Whenever I change the xml file I need to refresh the Cache, so I put this code on the global.asax.cs file. It add a callback to reload the xml file, but it seems that the callback doesn't work. ...
|
| Manually refreshing the Cache | 28 May 2004 15:47 GMT | 3 |
I am using Page Output Caching by using: <%@ OutputCache Duration="6000" VaryByParam="None" Location="Any" %> I would like to force caching to refresh all pages or specified pages in my website. I realize there are various ways of setting the time limit, etc. for a cache. ...
|
| Accessing the cache from outside the aspx page | 27 May 2004 18:47 GMT | 2 |
How do you get a reference to an applications cache from a class you call from within the aspx page? For instance suppose I have MyPage.aspx and a class called CacheHandler. MyPage.aspx creates an instance of CacheHandler at
|
| Incorrect recycling of worker process? | 27 May 2004 04:39 GMT | 1 |
Hi all, Here is my observation of recyclation of worker process aspnet_wp.exe. Server: Win2000, 2GB RAM, 2xCPU Installed .Net Framework 1.1, ASP.NET 1.1 application
|
| Speeding Up Pages | 24 May 2004 16:24 GMT | 2 |
I was wondering about this topic and although I accept that different situations call for different solutions, but wondered are there any other solutions and whether has anyone carried out a comparison of the different methods for avoiding JIT. Further more, is there anything I ...
|
| Which is better: XML File or SQL Query? | 22 May 2004 15:00 GMT | 3 |
I am building a Web site navigation menu User Control; this User Control will be embedded in most of the dynamic pages of the site. The menu data will change over time, but not frequently: most weekly traffic will see the menu choices as static data. So my question is: will I get ...
|
| Data from DLL not refreshing | 22 May 2004 06:06 GMT | 1 |
I have a simple ASP.NET page with a few lines of inline code. I created a DLL to monitor system uptime. The page is in /index.aspx and I placed the DLL in /bin/Uptime.dll. I added a reference to the namespace <%@ Import Namespace="WebUtil" % The first time I loaded the page ...
|
| Session variables in asp.net | 20 May 2004 12:52 GMT | 2 |
I would really appreciate any ideas / clues on this issue which I am facing. I have a asp.net application, the problem is with maintaining session variables while using authentication for different users. My users are divided in groups , and have a username and pwd to login. Now if ...
|
| DataSet vs DataTable | 17 May 2004 17:20 GMT | 1 |
Hope this isn't too much of a newb question. I'll ask it in the context of what I'm trying to do so that maybe it's more clear. I'm working on a site that has a list of featured products that I'd like to store in a table form in cache, since this info doesn't change much and will ...
|
| CacheDepency Loud balance | 10 May 2004 02:06 GMT | 1 |
I've two Web site in Loud balance. The page's, on each Web Site, are cache with syntax: Cache[CCacheName.CACHE_SECTION] = "Section"; CacheDependency dep = new CacheDependency(null, new string[] {"Section"});
|
| Cache works locally but not on DEV Server | 10 May 2004 02:05 GMT | 1 |
I have been developing an application that makes extensive use of asp.net caching. I am lazy loading many objects into HttpRuntime.Cache. The caching has been working great on my development machine but when I push it out to our DEV and QA servers no objects will persist in the ...
|
| remove single item from cache | 10 May 2004 02:04 GMT | 1 |
I use an httpModule to intercept call to object like swf, js so i can put that object in cache HttpCachePolicy ResponseCache=((HttpApplication) source).Context.Response.Cache ResponseCache.SetExpires(DateTime.Now.AddYears(1)) ResponseCache.SetCacheability(HttpCacheability ...
|
| Accessing HttpContext.Current.Cache from new Thread | 08 May 2004 01:12 GMT | 6 |
I have a web page that executes a potentially lengthy method declared on an object in a referenced assembly Nested within this method is a call to a static method which retrieves values from cache via the HttpContext.Current.Cache object In order to make the web application more ...
|
| How can I share cached data between web clients? | 03 May 2004 15:22 GMT | 6 |
If I have two web servers, one state server, and one database server. The application host 50+ sites each with 15+ users. I have a list of lookup values that are specific to each of the 50 sites but do not change much. Currently I pull the values from the DB and stick them in ...
|