In some asp tutorials, like <a href="http://www.4guysfromrolla.com/webtech/050900-1.shtml">this</a>, i observe the following pattern: >Application.Lock >'do some things with the application object >Application.Unlock However, since web pages can have multiple instances, there is an obvious concurrency problem. So my questions are the following: What if one page tries to lock while the object is already locked? Is there a way to detect whether the application object is locked? Is it better to just work on un unlocked application object or does that have other consequences?