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
Explain the difference between AutoPostBack and IspostBack in ASP.NET?
What is intrinsic objects in asp.net?
Whta are the Various steps taken to optimize a web based application (caching, stored procedure etc.) ?
What is session state server?
What is the use of express session?
Is razor a programming language?
What is mvc in asp.net tutorial? : Asp.Net MVC
What can we do with asp.net?
how to transfer the file from client to server using asp.net
What is considered a service provider?
What are the event handlers that can be included in the Global.asax file?
What are Master Pages in ASP.NET?
Give me one example of Web API Routing?
What are strong names?
How to implement globalization and localization in the use interface in .net.