70-486 Skills Measured >> 1. Design Application Architecture (15%-20%) >>

State Management

ASP.NET session state supports several different storage options for session data. Each option is identified by a value in the SessionStateMode enumeration. The following list describes the available session state modes:

InProc mode - stores session state in memory on the Web server. This is the default.

StateServer mode/OutProc - stores session state in a separate process called the ASP.NET state service. This ensures that session state is preserved if the Web application is restarted and also makes session state available to multiple Web servers in a Web farm.

SQLServer mode - stores session state in a SQL Server database. This ensures that session state is preserved if the Web application is restarted and also makes session state available to multiple Web servers in a Web farm.

Custom mode -custom storage provider. Off mode, which disables session state.

Sample Question 66 | Sample Question 67 | Sample Question 68 | Exam Question 22 | Exam Question 23 | Exam Question 36 | Case Study Question 53