| Platform SDK: IIS SDK |
The Unlock method enables other clients to modify the variables stored in the Application object after it has been locked using the Application.Lock method. If you do not call this method explicitly, the Web server unlocks the Application Object when the .asp file ends or times out.
Application.Unlock
<%
Application.Lock
Application("NumVisits") =index.html Application("NumVisits") + 1
Application("datLastVisited") = Now()
Application.Unlock
%>
This application page has been visited
<%= Application("NumVisits") %> times!
In the preceding example, the Unlock method releases the locked object so that the next client can increment NumVisits.
Note The application Lock method is cumulative,
meaning that if the same script calls Lock several times, it
must also call Unlock the same number of times to fully
release the application. If this does not occur, the application
lock will be held until the script is finished running.
Platforms: Windows 2000 with IIS 5.0 installed,
Windows XP with IIS 5.1 installed,
Windows Server 2003 family with IIS 6.0 installed
| What did you think of this topic? |
Order a Platform SDK CD |
See also:
| file: /Techref/language/asp/obj/ref_vbom_apomu.htm, 3KB, , updated: 2003/5/15 14:13, local time: 2012/5/23 07:48,
38.107.179.234:LOG IN |
| ©2012 These pages are served without commercial sponsorship. (No popup ads, etc...).Bandwidth abuse increases hosting cost forcing sponsorship or shutdown. This server aggressively defends against automated copying for any reason including offline viewing, duplication, etc... Please respect this requirement and DO NOT RIP THIS SITE. Questions? <A HREF="http://www.piclist.com/tecHREF/language/asp/obj/ref_vbom_apomu.htm"> Application.Unlock</A> |
| Did you find what you needed? |
|
The PICList shop now offers mugs, steins and... T-Shirts!!! |
Robotics nuts!Check out http://users.frii.com/dlc/robotics/projects/botproj.htm from Dennis Clark. This guy ROCKS! He has made (and sells but also releases code, docs, etc...) for a number of cool little robotic modules including whiskers, IR proximity detect and remote control, Sonar proximity detect, PWM, Servo, compass. Most of these use the little PIC 12C508 controller which costs basically nothing and is soooo tiny.The 4 servos, 2400 baud serial servo controller is a wonder of magic and he sells the programmed chip for $8. Wow! |
.