본문 바로가기

Language(언어)57

ASP Application 개체 Application.Lock Application.Lock 영문 Syntax: Application.LockThe Lock method prevents all other users from making changes in the Application object. The Lock method prevents all other users from changing any of the variables in the Contents collection of the Application object. Application objects are designed to be shared among an unlimited number of users. Therefore, you need the ability to allow only one user.. 2013. 12. 6.
ASP Application 개체 Application.Unlock Application.Unlock 영문 Syntax: Application.Unlock The Unlock method allows any user to have access to any of the Application object properties in order to make changes. The Unlock method is used to explicitly unlock the variables in the Contents collection of the Application object. In contrast, the Lock method prevents all other users from changing any of the variables in the Contents collection.. 2013. 12. 6.
ASP Application 개체 OnEnd OnEnd 영문 The OnEnd event occurs when the Application quits. This should not occur unless all user sessions are over. The signal of this event will run a handler script in the Global.asa file, if the script exist. The Application_OnEnd event occurs when the Application ends. This should only happen when the web server is stopped by the operating system in a normal manner. The Application_OnEnd ev.. 2013. 12. 6.
ASP Application 개체 OnStart OnStart 영문 The OnStart event occurs before the start of any new session by a user (i.e., before the Application object is first referenced). The signal of this event will run a handler script in the Global.asa file, if the script exist. The Application_OnStart event occurs before the beginning of any user session. The only built-in ASP objects available from within the OnStart event handler are .. 2013. 12. 6.