HTTPContext in load balancing

How can I manage items stored in an HttpContext in an NLB deployment.

+3
source share
1 answer

HttpContext for each user and for each request, so there is no reason to share it between machines. You probably need session state in SQL server mode.

http://msdn.microsoft.com/en-us/library/ms178586.aspx

Or save state in cookies, etc. There are more options.

+1
source

All Articles