Newbie Question

  • Thread starter Thread starter Blue Streak
  • Start date Start date
B

Blue Streak

Is there an equivalent in ASP.NET for the Application.Lock and Application.Unlock commands?
 
Hi Blue Streak,

Yes, as has been posted by others. However, as you're a "newbie" I thought
you might not be awarae of the Application Cache, which is recommended over
the ApplicationState, because it is thread-safe. The Cache also has the
ability to automatically expire objects stored in it. And because it is
thread-safe, it needs no locking.

--
HTH,

Kevin Spencer
Microsoft MVP
..Net Developer
What You Seek Is What You Get.

Is there an equivalent in ASP.NET for the Application.Lock and
Application.Unlock commands?
 
Back
Top