If a user has cookies enabled, a session variable is available to all pages in one application.
Yes, it's true, If a user has cookies enabled, a session variable is available to all pages in one application.
A cookie is often used to identify a user. A cookie is a small file that the server embeds on the user's computer. Each time the same computer requests a page with a browser, it will send the cookie too. With ASP, you can both create and retrieve cookie values.
An ASP session is a state that is used to store and retrieve the values of a user. It helps to identify requests from the same browser during a time period (session). It is used to store value for the particular time session. By default, the ASP session state is enabled for all ASP applications.
All users of the same application share ONE Application object.
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?