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
What are custom controls?
What is ispostback method in asp.net? Why do we use that?
What are all the various Estimation Techniques available ?
What are session state modes? List some of the important session state modes of asp.net.
Differentiate between early binding and late binding.
How to reduce the width of textbox in editcommandcolumn of datagrid?
How does a content page differ from a master page?
What are the Types of objects in ASP
How can you apply a theme to your asp.net application?
How do you identify that the page is postback?
Why is global asax is used?
How will you do Redo and Undo in a TextControl?
Explain the difference between web user control and web custom control?
Can you set the session out time manually?
What is sdlc process?