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
What is meant by ispostback in asp net?
What is the difference between the response.write() and response.output.write() methods?
Why would anyone need to implement their own hashtable or linked list?
What are the parts of an http response?
Explain form level validation and field level validation?
What are the differences between clr & cts?
What is the difference between executescalar and executenonquery?
What is difference between viewstate and session in asp net?
Explain file-based dependency and key-based dependency.
What is ispostback property?
Define transparent caching with aop?
What is rich control in asp.net?
Explain the difference between singleton and single call?
How to prepare culture-specific formatting in .net.
What is the life cycle of web page?