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
Where session variables are stored?
How can we add an event handler for a ASP.NET function executed on MouseOver for a certain button.
WSDL means?
Explain how is the asp.net mvc architecture different from others? : asp.net mvc
Describe the master page.
How to implement globalization and localization in the use interface in .net.
Describe SOA and the tenets of it?
Explain what is the procedure to create the environment for asp.net? : asp.net mvc
What are the different types of cookies in asp.net?
What is Bundling and Minification in MVC?
Can we use a static function with a non-static variable?
What are main return types supported in Web API?
How many types of controls are there in asp.net?
To redirect the user to another page which method do we use without performing a round trip to the client?
I have created a configuration setting in my web.config and have kept it at the root level. How do I prevent it from being overridden by another web.config that appears lower in the hierarchy?