2

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

Joel Coehoorn
  • 399,467
  • 113
  • 570
  • 794
George2
  • 44,761
  • 110
  • 317
  • 455

2 Answers2

3

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
  • 37,429
  • 10
  • 86
  • 110
1

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

Josh
  • 8,219
  • 13
  • 76
  • 123