Add and remove variables, observe values displayed in the trace area and try to
understand the idea of application, session, and cookie variables.
All three containers of custom variables are dictionaries, you provide a name of the
key and a value for this key.
All application variable are shared between all users currently using the application.
It means, that if you run your page in two different browsers (also on different systems),
all variables will be accessible (visible and available for modification) for both users.
Session variables are limited to the session of a user. Sessions are identified by a unique
session identifier (SessionID). The session state can be configured in the
sessionState node of the
web.config file.
Cookies allow to store user-specific information on the client side. For example,
when a user visits your site, you can use cookies to store user preferences or other information.
When the user visits your Web site next time, the application can retrieve the information
stored earlier. The user can always track cookies (and also remove them and block them) in
the browser's options.