All users of the same application share ONE Application object.
Application Object
An application on the Web may consist of several ASP files that work together to perform some purpose. The Application object is used to tie these files together.
The Application object is used to store and access variables from any page, just like the Session object. The difference is that ALL users share ONE Application object (with Sessions there is ONE Session object for EACH user).
The Application object holds information that will be used by many web pages in the application (like database connection information). The information can be accessed from any web page. The information can also be changed in one place, and the changes will automatically be reflected on all web pages.
All users of the same application share ONE Session object.
Which ASP property is used to identify a user?
Page 1 has this link:
<a href="page2.asp?color=green">Go</a>
How can page2.asp get the "color" parameter?
How do you get information from a form that is submitted using the "post" method?
How can you script your ASP code in JavaScript?