0 I have an ASP.NET 3.0 application that runs fine on a single server. It uses application variables to check if the user checked the file and blocks it for all other users. When I put the application on load-balanced servers, the application did not work as expected, since several users were sent to several servers, and each user could check the required file.
The main thing is that I can share the application variables in my application, although it is distributed across several servers. Or is there a better way to get a global variable?
EDIT: I am checking if Application ["FileLocked"] is checked true or false
source
share