.NET ASP.NET - Can you compare ASP.NET sessions with classic ASP?
Interview Question Database For Software Developers
|
|
| Can you compare ASP.NET sessions with classic ASP? | | .NET INTERVIEW QUESTIONS - Can you compare ASP.NET sessions with classic ASP? | | By: |
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.
| | ID: 2267 | Rank: 444 | Votes: 0 | Views: 164 | Submitted: 20090526 |
Copyright © 2009 FYIcenter.com
All rights in the contents of this Website are reserved by the individual author.
No part of the contents may be reproduced in any form without author's permission.
|
|
|