Scope of "session" variables

Are “session” variables necessarily “global” in scope? Public?

You can access any Session Property or Method by prefixing it with ‘Session’, anywhere in your Project. So it is essentially Public.

Mr. Alvy,

Thank you for the rapid response. Saves me a lot of time.

Daryl Bem

However, when working within the Session object itself (like a Session Method, for instance), don’t reference Session Properties or Session Methods there with the ‘Session.’ prefix. Do it either with ‘Self.’ or no prefix at all.

Got it. Thanks.