Shared Flashcard Set

Details

IIS- specifics
Session state, caching, Web.config, Machine.config
8
Computer Science
Professional
07/12/2007

Additional Computer Science Flashcards

 


 

Cards

Term
What is ASP.NET session state? What happens when a connection to the server is made?
Definition
1. Session state is how client specific information is maintained on the server.
2. A session ID is created and specific info about the client is stored.
Term
What are the two main session states?
Definition
In process mode and out of process mode.
Term
What is in process mode?
Definition
The default mode and the fastest mode, which works with small and middle level web applications; requires no configuration.
Term
What is out of process mode? What are the two types?
Definition
It uses some other process for storing the session values. There are two methods: using aspnet_state.exe and Using SQL server instance
Term
What is the main purpose of using out of process mode? What is a drawback?
Definition
keeping session state variables alive by using, for instance, SQL server to store them. It is slower.
Term
What does ASP.NET caching do?
Definition
It can greatly enhance the performanace of Web applications while minimizing the use of precious resources. It must, however, be balanced with memory usage.
Term
What is a Web.config file?
Definition
It is the main settings and configuration XML file for an ASP.NET web application.
Term
What are the four main items Web.config defines for an ASP.NET Web application?
Definition
1. database connections 2. the default language for the page 3. session state 4. type of authentication
Supporting users have an ad free experience!