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 session management in web application?
Why do you use the app_code folder in asp.net?
What is http request and response?
How is the asp.net mvc architecture different from others? : asp.net mvc
What is an imagemap in asp.net?
How you will handle session when deploying application in more than a server?
what is the difference between response.write() and response.output.write()?
How can you implement encapsulation in asp.net?
Explain how viewstate is being formed?
How many types of triggers are there in update panel?
What is server side session management?
What is the used of "ispostback" property?
What is query string? What are its advantages and limitations?
What is syntax code to send email from an asp.net application?
How do you do Client-side validation in .Net?