How can I manage items stored in an HttpContext in an NLB deployment.
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.