From what I understand, if you dim a variable as Public, other users using the same web app will have access to the values of those variables. In most cases that would be undesirable.
If I use the Friend keyword to dim a variable, will that variable be global to everything in the project for a given user, but not global to other users having their own instance of the project?
What I want is a variable that will be global to only one instance of a project and not another. Each instance of the project should have its own set of global variables.
Does that make sense?
I've read Microsoft's concepts on this and I think that is what I understand. Am I correct?
If I use the Friend keyword to dim a variable, will that variable be global to everything in the project for a given user, but not global to other users having their own instance of the project?
What I want is a variable that will be global to only one instance of a project and not another. Each instance of the project should have its own set of global variables.
Does that make sense?
I've read Microsoft's concepts on this and I think that is what I understand. Am I correct?