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 the namespace to create thread in .net?
Can viewstate be accessed in another page?
Differentiate globalization and localization.
Explain the asp.net session state modes.
Explain the updatepanel?
What are the different types of validation controls in asp.net?
Why session is more secure than cookies?
Suppose you want an asp.net function (client side) executed on the mouseover event of a button. Where do you add an event handler?
If there are multiple update panels on the page say upd1 and upd2. There is a button placed in upd1. How can you stop upd2 to update when button placed in upd1 is clicked?
What are the major built-in objects in ASP.NET?
How we implement the multiple paypal value with gridview in my website and how we make a payment through Credit Card.
How can I create master page in asp net?
What are the different method of navigation in asp.net?
How u refer webservices?
Which two new properties are added in asp.net 4.0 page class?