How many types of session in asp.net2.0
Answer Posted / sudhakarraoadapa
Session Management can be achieved in two ways
1)InProc
2)OutProc
OutProc is again two types
1)State Server
2)SQL Server
InProc
Adv.:
1) Faster as session resides in the same process as the
application
2) No need to serialize the data
DisAdv.:
1) Will degrade the performance of the application if large
chunk of data is stored
2) On restart of IIS all the Session info will be lost
State Server
Adv.:
1) Faster then SQL Server session management
2) Safer then InProc. As IIS restart
won't effect the session data
DisAdv.:
1) Data need to be serialized
2) On restart of ASP.NET State Service session info will be lost
3)Slower as compared to InProc
SQL Server
Adv.:
1) Reliable and Durable
2) IIS and ASP.NET State Service
restart won't effect the session data
3) Good place for storing large chunk of data
DisAdv.:
1) Data need to be serialized
2) Slower as compare to InProc and State Server
3)Need to purchase Licensed
version of SQL Server
where they are stored.
1. inproc - default stored in web.config.
2. outproc - stored in server side.
3.Sql server - stored in database.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
When maintaining session through sql server, what is the impact of read and write operation on session objects?
Explain the concept of event bubbling in ASP.NET?
What is difference between session and cookies?
Why select Web API?
What are all the various Estimation Techniques available ?
Define cookie.
How would you create a permanent cookie?
What is syntax code to send email from an asp.net application?
What is difference between Fragment Caching and Page Caching in ASP.NET?
What is simple data binding?
How do you initiate validation on the server manually? What are two situations when you might you want to do that?
Explain serialization and deserialization?
What is the postback property in asp.net?
Can the validation occurs in server-side or client-side? If the validation occurs why should we do?
Is asp.net still used?