Hello,
I have a rather large application I've been working on for a while that does a multitude of things for customers in eCommerce. A lot of critical information throughout the life of each users application is stored in a module I've named dbasedefs. This contains
information such as cookie, security levels, userid, and more in public variables that persist across page but exist throughout the life of the application. I've noticed that when I refresh the page a lot of the time my variables are being replaced with another
users variables. That is two separate users application data in the module are being being received somehow. Are modules somehow shared across an application or am I right to assume it's something to do with my login and credential system? If I am right to
assume there is a problem with modules, how do I fix that?
The variables are simply as such:
Public user_id as string = ""
Public user_cookie as ...
Go to the complete details ...