What are the different types of Session state management
options available with ASP.NET?
Answer Posted / ganesh
ASP.NET provides In-Process and Out-of-Process state
management. In-Process stores the session in memory on the
web server. This requires the a "sticky-server" (or no
load-balancing) so that the user is always reconnected to
the same web server. Out-of-Process Session state
management stores data in an external data source. The
external data source may be either a SQL Server or a State
Server service. Out-of-Process state management requires
that all objects stored in session are serializable.
| Is This Answer Correct ? | 8 Yes | 0 No |
Post New Answer View All Answers
What is asp net theme?
What is Razor View Engine
How does viewstate work?
What type of code, client-side or server-side, is found in a code-behind file of a Web page?
What is asp.net architecture?
What is the namespace to create thread in .net?
What is manifest in .net framework?
Is it true that a Web service must be written in .NET or not?
Define authentication and authorization.
What is the difference between ASP Session State and ASP.Net Session State?
What is the difference between session and viewstate in asp.net?
How to implement globalization and localization in the use interface in .net.
Where is http session stored?
Write the different features of a Thread and a Process?
What is the displayafter property in updateprogress control?