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
Explain Areas in MVC?
What is difference between viewstate and session state in javascript?
What does clearing cache?
Explain server-side scripting and client-side scripting.
What is caching? What are different ways of caching in asp.net?
What is variable and constant in .net programming language?
What is asp.net mvc? : asp.net mvc
What is ispostback method in asp.net?
List of words of preprocessor in .net?
What is the difference between stored procedure vs function?
What is the difference between equals() and == in c#?
Define web.config in .net?
Explain how is the asp.net mvc architecture different from others? : asp.net mvc
What are the differences between the response.write() and response.output.write()?
What is httpresponse?