Can we share session between ASP.Net & ASP
Answer Posted / kiran varma
Cookies are the most common way for Web applications to
identify the user session, and can be used to identify
session state for both classic ASP and ASP.NET. Session
state information is stored in memory in ASP script and
can't be shared with other applications, such as ASP.NET.
If the session state is stored in a common format in SQL
Server, the session state can be accessible by both classic
ASP and ASP.NET.
| Is This Answer Correct ? | 22 Yes | 6 No |
Post New Answer View All Answers
Conceptually, what is the difference between early-binding and late-binding?
Should I implement finalize on my class? Should I implement idisposable?
What's the problem with .net generics?
What are the properties of ADO.NET?
Can a try block have nested try blocks?
What is stored procedure ? how we use it in .NET ?
Can a dll be changed to an exe?
Please explain what is heap and what is stack?
What is a variable of implicit type and what is its scope?
Why do we use the “using” statement?
What is the difference between a debug and release build?
What is the single responsibility principle?
Explain what relationship is between a process, application domain, and application?
What is dot net and its uses?
Explain can the validation be done in the server side? Or this can be done only in the client side?