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?
.NET INTERVIEW QUESTIONS - Can you compare ASP.NET sessions with classic ASP?
✍: Guest
ASP.NET session caches per user session state. It basically uses “HttpSessionState” 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.
2009-05-26, 4819👍, 0💬
Popular Posts:
How To Create an Add-to-NewsGator Button on Your Website? - RSS FAQs - Adding Your Feeds to RSS News...
What would you use to compare two String variables - the operator == or the method equals()? You can...
.NET INTERVIEW QUESTIONS - What is the difference between thread and process? A thread is a path of ...
How can you write a loop indefinitely? Two examples are listed in the following code: for(;;) { ... ...
How To Define a Sub Function? - Oracle DBA FAQ - Creating Your Own PL/SQL Procedures and Functions A...