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 JIT and how is works ?

1 Answers   Patni,


what is NET Framework ?

4 Answers   TCS,


what is client back feauture ?

1 Answers  


What's the difference between viewstate and sessionstate?

0 Answers  


I have a datagrid of 10 rows and I am updating the fifth row using template column edit. How wil u know that the row is updated, so that it can be send to database for updating the respective table?

3 Answers  


A Web Service Can Only Be Written In .net. Is it True??

0 Answers   Siebel Systems,


How to create discussion forum in asp.net mvc? : Asp.Net MVC

0 Answers  


How to prepare culture-specific formatting in .net.

0 Answers  


Can you explain one critical mapping? Performance issue which one is better?

0 Answers  


Explain Apache web servers ? How can you get ASP.NET running in Apache web servers - why should you do this?

0 Answers   Siebel,


explain about Back ground process control in .net

1 Answers   Digital Mesh, Infronics,


I am using SQLServer 2005. I have one table called Drivers. Every day thousands of records will be added in this table. I have to show all these records in my GridView with out applying ajax timer beacause we don't know the time limit when the new record come to the table. Sometimes it will add for 10 seconds some times 20 seconds. There by Please try without using timer or any other soultion apply for the table in sqlserver. But, i want to see all records immediately when new record comes in table. How? Thanks in advance... Ramesh

5 Answers  


Categories