For what purpose applications variables are used?
Beside this, for what purpose session variables are used?
Session variables are special variables that exist only while the user's session with your application is active. Session variables are specific to each visitor to your site. They are used to store user-specific information that needs to be accessed by multiple pages in a web application.
Request: allows access to both header and body of the HTTP request.
- Query String: used in the past with method GET to pass parameters.
- Form: used today with method POST to provide access to the pair - fieldname = value.
Moreover, what is an application object?
Application Object. An application on the Web may be a group of ASP files. 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, while with Sessions there is one Session object for EACH user.
Classic ASP is a server-side scripting environment that you can use to create and run dynamic web applications. With ASP, you can combine HTML pages, script commands, and COM components to create interactive web pages that are easy to develop and modify.