Categories:
.NET (357)
C (330)
C++ (183)
CSS (84)
DBA (2)
General (7)
HTML (4)
Java (574)
JavaScript (106)
JSP (66)
Oracle (114)
Perl (46)
Perl (1)
PHP (1)
PL/SQL (1)
RSS (51)
Software QA (13)
SQL Server (1)
Windows (1)
XHTML (173)
Other Resources:
Can you compare ASP.NET sessions with classic ASP
Can you compare ASP.NET sessions with classic ASP?
✍: Guest
ASP.NET session caches per user session state. It basically uses gHttpSessionStateh class.
Following are the limitations in classic ASP sessions :-
ã ASP session state is dependent on IIS process very heavily. So if IIS restarts
ASP session variables are also recycled.ASP.NET session can be independent
of the hosting environment thus ASP.NET session can maintained even if IIS
reboots.
ã ASP session state has no inherent solution to work with Web Farms.ASP.NET
session can be stored in state server and SQL SERVER which can support
multiple server.
ã ASP session only functions when browser supports cookies.ASP.NET session
can be used with browser side cookies or independent of it.
2007-10-23, 5431👍, 0💬
Popular Posts:
If we have the following in a Java code: String s="abc"; String s2="abc"; Then what will be output o...
How To Remove the Top White Space of Your Web Page? - CSS Tutorials - Introduction To CSS Basics The...
How do you pass control from one JSP page to another? Use the following ways to pass control of a re...
What are the types of variables x, y, y and u defined in the following code? #define Atype int* type...
.NET INTERVIEW QUESTIONS - Is versioning applicable to private assemblies? Versioning concept is onl...