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
Types of instancing properties and explain each. Tell the difference between multiuse,singleuse and globalmultiuse and which is default ?
What is razor? : asp.net mvc
When should I use server transfer and response redirect?
What are the various session state management options provided by asp.net?
How do I debug an asp.net application that was not written with visual studio.net and that does not use code-behind?
What are the different types of cookies in asp.net?
What is the difference between mechine.config and web.config?
How can you implement encapsulation in asp.net?
How does u call and execute a sp in .net?
What is skin in asp.net?
How would you get asp.net running in apache web servers?
What are server side controls?
What are the differnt types of handler in ASP.NET?
Distinguish between Server-side and Client-side code?
List some of the important session state modes of asp.net.