Answered Questions

  • State the difference between a Session and an Application

    Anna

    • Oct 20th, 2011

    Application State - Stored on the server and shared for all users. Does not expire. Deprecated by Cache .

    Session State - Stored on the server. Unique for each user. Can expire.

    sumangala

    • Sep 8th, 2011

    Application State : Data stored in the application object can be shared by all the sessions of the application. Application object stores data in the key value pair. Session State: Session State st...