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
How does asp.net page work?
How to find out what version of asp.net I am using on my machine?
What is viewstate? What does the “enableviewstate” property do?
Is redux flux?
Why select Web API?
What are the main advantages of using asp.net?
Why we use dbms for projects? Why don’t we save any application data in separate files instead of dbms?
What are web server controls in asp.net?
Is it possible for me to change my aspx file extension to some other name?
What is the use of execute non query in asp.net?
How many ways are there to maintain a state in .net? What is view state?
What are the types of session in asp.net?
Explain about asp.net state management?
how to elimainte the similar data from the different tables
What is difference in .net 1.1 and .net 2.0?