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
What is meant by server side scripting?
What is special types forms
What are assemblies and namespaces and explain the difference between them ?
How does cookies work in asp net?
How does output caching work in ASP.NET?
Do I need to have the latest version of windows media player installed?
What are the main advantages of using asp.net?
What is webresource axd?
What is full form of asp.net?
What are the different methods of session maintenance in asp.net?
Does google crawl redirects?
What are query strings used for?
What’s the use of “GLOBAL.ASAX” file?
What is the procedure to create the environment for asp.net? : asp.net mvc
How to bind all the binding controls in a page at once in ASP.NET?