How can Items stored in the Htt开发者_如何学PythonpContext be managed in an NLB deployment.
HttpContext is per user and per request, so there is no reason to share it between machines. What you need is probably 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.
精彩评论