Difference between ASP & ASP.NET Session State



Difference between ASP & ASP.NET Session State..

Answer / skmdali786

ASP:

1)ASP 's Session State was stored in the same process that
hosts ASP.

2)for different web servers, each Web server had its own
session state.

There was a problem in sharing session states in a web farm
situation.

3)No support for Cookieless sessions.

4)No web.config files for configuring the session state.

ASP.NET:

1)ASP.NET 's Session State is stored in the same process
that hosts ASP.net(default)
It can also be stored out of process in an sql server
database or a state server

2)different web servers can easily share the session state
using the appropriate

configurations.

3)Supports Cookieless sessions.(<sessionState
cookieless=true/>) in web.config file.

SessionId is visible in the browser.

4)uses web.config files for configuring the seesion state.

Is This Answer Correct ?    8 Yes 2 No

Post New Answer

More ASP.NET Interview Questions

what is COM Object in Dot net?

6 Answers   CTS,


Why is string called immutable data type?

0 Answers  


What is clr? Difference between clr & cts?

0 Answers  


what are the ihttphandler and ihttphandlerfactory interfaces ?

0 Answers  


can we place the same DLL in debug folder two times? (without using strong name )

9 Answers   TCS,


In which event of the page life cycle, is the viewstate available?

0 Answers  


What’s the difference between response .redirect and server.transfer?

0 Answers  


How do I send e-mail from an ASP.NET application ?

1 Answers  


What are the differences between the response.write() and response.output.write()?

0 Answers  


What is enableviewstate?

0 Answers  


What are the 3 levels at which content pages can be attached to Master Page?

0 Answers   MCN Solutions,


What is asp.net with mvc? : Asp.Net MVC

0 Answers  


Categories