How to avoid visitor from using the Application when we make some modifications on the Application
- We can use the Lock method to avoid the visitor from using the Application:
<%
Appplication.Lock
Application("count") = Application("count") + 1
Application.Unlock
%>
No comments:
Post a Comment