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 difference between asp.net mvc and asp.net webforms? : asp.net mvc
explain code with multi inhertance
Where the cookie value is stored?
What is asp.net web pages?
In ViewState How much lifespan items stored?
What is the full meaning of asp.net?
What are validator? How do you disable them?
Describe the disadvantage of cookies.
How would you get asp.net running in apache web servers? Explain it's limitations.
What is the adavantage of using ASP.NET routing?
How would you implement inheritance using c#?
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 ASP and ASP.NET page works? Explain about asp.net page life cycle?
How do u deploy your asp.net application?
What are the advantages and disadvantages of Using Cookies?