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

IN an ASP.NET Web application if there is any error, how can you debug?

0 Answers   Siebel,


What is difference between cache and session?

0 Answers  


What is viewstate?

6 Answers   Abacus, Microsoft, Sopra,


What is _dopostback in asp net?

0 Answers  


Difference between .NET and previous version?

1 Answers   Microsoft,






Input:http://www.allinterview.com/forms/questionform.php Output:http://www.allinterview.com/forms/questionform Write c# program to get the above desired output for the given Input.....

3 Answers   Bally Technologies,


Details on web.config and global.asax - just explain what are the sections will be there.

1 Answers   Syntel,


when using windows API in .net then it is managed code or Unmanaged code?

2 Answers  


What is indexing on asp.net?

0 Answers  


How many types of validation controls are provided by ASP.NET?

8 Answers  


cr8 2 datatables into one dataset DYNAMICALLY (no backend database used like sql,etc.,) with following columns 1st datatable with columns studentNo studentName Deptno 2nd datatable with columns Deptno DeptName DeptAddress add data to both the tables Dynamically and merge these tables into one table and display it in Grid view as studentNo studentName Deptno DeptName DeptAddress

1 Answers   SQL Star,


What is difference between asp state management and asp.net state management? How can we pass info between 2 asp.net pages?

0 Answers  


Categories