views:

343

answers:

2

Hello everyone,

I need some tutorials or samples which cover the following topics, does anyone have any recommendations?

  1. For ASP.Net, how to manage session and especially manage correctly when there is large number of concurrent user requests, access session and various ways to manage session expire;

  2. For old ASP, how to manage session and especially manage correctly when there is large number of concurrent user requests, access session and various ways to manage session expire.

thanks in advance, George

+1  A: 

ASP.NET has great tutorials, here is one that covers session management.

Josh
Seems not having a one stop printable page?
George2
If you want to print the source, you can click on the view source buttons and print from those pages.
Josh
+3  A: 

ASP.NET

ASP.NET Session State is a white paper by Rob Howard over on MSDN which goes into length discussing the ASP.NET Session object and it's uses.

More from MSDN:

Other Sources:


Classic ASP

W3Schools has some great ASP tutorials including the ASP Session Object tutorial.

TheTXI