Wrox Programmer Forums
|
ASP.NET 2.0 Professional If you are an experienced ASP.NET programmer, this is the forum for your 2.0 questions. Please also see the Visual Web Developer 2005 forum.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the ASP.NET 2.0 Professional section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old August 8th, 2007, 10:05 AM
Registered User
 
Join Date: Oct 2006
Posts: 9
Thanks: 0
Thanked 0 Times in 0 Posts
Default Data Cache not saving

I am developing a asp.net (2.0) application which uses data caching to save data until the user completes all the tasks. I am using the following commands:

        Cache.Insert("Allocations" + strCacheNo, dtAllocations, null, System.Web.Caching.Cache.NoAbsoluteExpiration, TimeSpan.FromMinutes(60), CacheItemPriority.High, null);
        Cache.Insert("Postings" + strCacheNo, dtPosting, null, System.Web.Caching.Cache.NoAbsoluteExpiration, TimeSpan.FromMinutes(60), CacheItemPriority.High, null);

dtAllocations and dtPostings are .net data tables.

On my development laptop this works fine, I can load the data, add to it and re cache it no problems.

When I loaded it on the test PC it doesn’t appear to cache at all. Any ideas on what my problem is?


Thanks
Robert
 
Old August 8th, 2007, 07:29 PM
planoie's Avatar
Friend of Wrox
 
Join Date: Aug 2003
Posts: 5,407
Thanks: 0
Thanked 16 Times in 16 Posts
Default

Could caching be disabled on the other machine?

Is "strCacheNo" a value specific to the user? If it isn't you need to change this logic a bit because you'll get users stepping on each other's toes. A better solution might be to use the session so you don't have to worry about managing the user context of the data.

-Peter





Similar Threads
Thread Thread Starter Forum Replies Last Post
Saving Data with Report latingntlman Reporting Services 0 March 18th, 2008 04:52 PM
Error for saving data csharpa SQL Server 2005 0 February 21st, 2007 07:48 AM
saving data from a array Hylsan PHP Databases 0 February 15th, 2007 04:17 AM
Saving data using form misskaos Classic ASP Basics 3 October 27th, 2006 03:16 PM
Saving Form Data Earl Hickey ASP.NET 1.0 and 1.1 Basics 5 July 25th, 2006 01:10 PM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.