I use session variables to store important data from a class object data in a VB. NET multi-user tracking application I designed. Currently we have the application being run from a single server.
The use of session variables in the application works very well; however, I am told that session variables cannot be used in a multiple server environment because the user may be hitting on a different server each time (depending on load distribution) and that this will have an adverse effect.
Can anyone verify this as an issue? If so, what are possible alternatives that involve the least amount of recoding?
Thanks.