Each application has its own ________ .
Global.asax.
Local .asax
Global.asax & Local .asax
None of the above
Global.asax sets the event code and values for an application using_________.
Script blocks and directives.
Folders and directives.
Folders and subfolders.
None of the above.
When executed, ________with events, values, and inheritance abilities.
Global.asax is a .NET component
History.asax.
Local .asax
None of the above
By setting what file it affects the whole of the application and scripts contained within it?
Global .asax
History.asax.
Local .asax
None of the above
To use application, session, and cache values, you do not need to write your own ________but you must if you wish to use static variables.
Global.asax
Local.asax
History.asax.
None of the above
The whole of the application code and all application users currently active can access________ Variables.
Application
Database
Session
None of the above
ASP.NET introduces two new facilities to extend the application functionality, what are they?
The Cache object and static variables.
The static and dynamic variables.
The Cache object and dynamic variables.
None of the above.
_________ enable the programmer to preload content and data, with automatic expiry and dependencies.
Non-cache values
Cache values
Parameters
None of the above
_______are the Global.asax application class member variables and are accessible to the whole application; and as they are not object collections, they do not have the overhead of application variables and so they have, in many cases, higher performance.
Static variables
Dynamic variables
Cache variables
None of the above
Are there any security risks associated with session and application variables?
As the state information is stored in storage (server memory or a database) that the user has no direct access to, providing databases are secured; there is no direct security risk.
Ensure that application variables do not contain sensitive information, as they are accessible to the whole application and to all users within it.
As the state information is stored in storage (server memory or a database) that the user has no direct access to, providing databases are secured; there is no direct security risk.________&
Ensure that application variables do not contain sensitive information, as they are accessible to the whole application and to all users within it.
None of the above