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 redirectpermanent in asp.net?
How may clustered index we can create in table?
Which is the parent class of the ASP.NET server control?
Why Unload event of MasterPage Calls first in ASP.net ?
What are the various types of cookies in asp.net?
a)COM Callable Wrapper b)Runtime Callable Which one of the above is Win32 API in .Net?
How many types of session in ASP.NET
Is asp net front end or backend?
What is datagrid asp.net?
Explain how can we inherit a static member?
Explain serialization and deserialization?
Explain diff between dataset and datareader?
What is the purpose of master page?
Can we have multiple master pages in asp net?
What is a 401 redirect?