Updating cached application data

  • Thread starter Thread starter Dave Bartlett
  • Start date Start date
D

Dave Bartlett

I keep certain data in the Application object for performance reasons, but
need to update the data stored there periodically, like once every day.

How could I achieve this?

Thanks
 
You might take a look at the HttpContext.Cache property. The Cache object
has the ability to expire items periodically.
 
Back
Top