Which object can help you maintain data across users?

Options
- Application object
- Session object
- Response object
- Server object


CORRECT ANSWER : Application object

Discussion Board
More..

Answer is Application object -
An application on the Web may consists 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 pages in the application (like login user name in all pages for the current user).
The information can be accessed from any page. The information can also be changed in one place, and the changes will automatically be reflected on all pages.

Pramod 11-26-2015 11:15 PM

Answer

Please suggest

Jitendra 11-19-2014 04:56 AM

Write your comments


Enter the code shown above:

(Note: If you cannot read the numbers in the above image, reload the page to generate a new one.)


Advertisement