how many session modes are available?some brief explnation
Answer Posted / chandra prakash
There are Five Session State Modes :
InProc mode, which stores session state in memory on the Web server. This is the default.
StateServer mode, which 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, which enables you to specify a custom storage provider.
Off mode, which disables session state.
| Is This Answer Correct ? | 7 Yes | 0 No |
Post New Answer View All Answers
Explain how dot net compiled code will become platform independent?
Where is session cookies stored?
What is difference between Server.Transfer and Response.Redirect in ASP.NET?
Explain the difference between Repeater and Data list control in ASP.NET?
How to fetch a data from one table to another table in asp.net ?
Why mvc is better than asp.net? : Asp.Net MVC
code for "For every 5days system has to create 1text file with the corresponding date and it has to store in c-drive" by using web applications
About CLR, reflection and assemblies?
Describe the differences between the lifecycles of Windows services and Standard EXE?
Describe the .net base class library.
How use Xml data in ASP.net?
What events will occur when a page is loaded?
What are the differences between primary foreign and unique keys?
What is the use of placeholder control?
What are httphandlers and httpmodules and difference between them?