I'm modifying an ASP application so that only the current user can access and modify data on a ASP page (Application Object.) while preventing users who log-in later from accessing this ASP page. I'm using the ASP Lock and Unlock Methods for this purpose. I used the following code.
<%
Application.Loc k
%>
at the top of the ASP page. However, during testing, it didn't seem to work. I log-in as another user to this page and was able to modify data. Any suggestions as to how to make this work?
<%
Application.Loc k
%>
at the top of the ASP page. However, during testing, it didn't seem to work. I log-in as another user to this page and was able to modify data. Any suggestions as to how to make this work?
Comment