How many types of session in asp.net2.0
Answer Posted / jayant shahi
ASP.Net supports 4 types of sessions
1)in process (InProc)(The Default) Session state exists
within the process the web is using
2)state server (OutProc)Session data is sent to the
configured stateserver service
3)sql server (OutProc)Session data is store in the
configured sql server database
4)custom
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
| Is This Answer Correct ? | 14 Yes | 0 No |
Post New Answer View All Answers
Where viewstate value is stored in asp.net?
What are validator? How do you disable them?
How do active server pages work?
How can you use a custom controls in ASP.NET application?
What is the used of "ispostback" property?
What is state management in asp.net with example?
How do session tokens work?
Are there any resources for drop-in replacements for the default css that comes with the ASP.NET Website template?
Explain what is viewstate?
How to change Master page in ASP.Net using code?
What is the advantage of using Windows authentication in a Web application?
What is the difference between user control an custom control?
Explain the namespace classes used in asp.net mvc? : asp.net mvc
Where you store Connection string in "Web.Config" file in ASP.NET?
What is Web API Routing?