August 1999
Intermediate to advanced
1488 pages
72h 53m
English
Created by the server-side JavaScript runtime when the application starts
The project object is an object shared by all users accessing the application. This object is created when the application is started, and destroyed when it is stopped. The project object is often used to store global properties that need to be accessed or modified by all user sessions. A common use of this object might be a counter holding the number of users that have accessed your application.
The object itself has no default properties, but properties can be created simply by specifying a name and value for the property. The following is an example of how to create a property and assign it a value, which is the IP address of the ...
Read now
Unlock full access