How many types of session in asp.net2.0
Answer Posted / manish pathak
There are two category of Session type:
(1) Inproc : are those which are stored under aspnet_wp.
(2) OutProc : are those which are stored outside aspnet_wp.
- Inproc : This is default session state and it is stored
locally in the memory of asp net worker process.
- OutProc :
(a) StateServer : it is stored outside aspnet_wp & is
managed by window service. Location of that service is
specified by stateConnectionString attribute.
(b) SqlServer : it is also stored outside aspnet_wp &
is managed by Sql Server Database. Location of that database
is specified by sqlConnectionString attribute.
Thanks
Manish Pathak
| Is This Answer Correct ? | 16 Yes | 2 No |
Post New Answer View All Answers
Explain the main function of url routing system in asp.net mvc? : asp.net mvc
Who is using asp.net?
Explain the difference between sql invalidation and sql notification.
How do u deploy your asp.net application?
If Instancing = Single use for ActiveX Exe, how will this be executed if there are 2 consecutive client requests ?
What is cached data phone?
What is the function of new view engine in asp.net? : asp.net mvc
What are the merits and demerits of viewstate?
Can we have multiple worker process in an ASP.NET application? If so then how it has been handled by application? And who handles it?
How to automatically get the latest version of all the asp.net solution items from source safe when opening the solution?
What are the types of validation in asp net?
Explain about Automatic resource management?
What is the advantage of using Windows authentication in a Web application?
What are the new login controls in asp.net 2.0?
How to store checkbox value in database in asp.net mvc? : Asp.Net MVC