The easiest way is to use the Application() or Session() objects:
Application("GlobalVariableName") = "whatever you want"
Session("GlobalVariableName") = 12345
The difference between the two is that when you use Application() all users
will see whatever the variable is and when you change it they all see the
changes. With Session() the variable is unique for each user, so when you
change it for one user the other user still has the same value they had
before. Good luck! Ken.
Want to reply to this thread or ask your own question?
You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.