Difference between ASP & ASP.NET Session State

Answer Posted / 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       View All Answers


Please Help Members By Posting Answers For Below Questions

Where sessions are stored in asp.net?

744


What does session_start () do?

828


What are directives in asp.net?

700


What are the different types of cookies in asp.net?

755


Can we use html in asp.net?

676


What is jade template engine?

787


What is viewstate information stored?

837


Can the dictionary object be created in client?s scope ?

2196


What is Model-View-View Model?

781


What are the various session state management options provided by asp.net?

740


Explain the different types of assemblies?

721


What is the maximum amount of memory any single process on windows can address?

753


What is event in asp.net?

746


How to create a db connection at one place/page so that we can use that connection for all pages/forms/windows.what r the steps ned to be performed if question not clear,let me know

906


Which data type does the rangevalidator control support?

720