Global in a Web app

In a desktop app I usually have a modGlobals module which I put Globals, which, as I understand, wont work in a web app because all multiple users may have access to that area.

If I put global in the Session area will be ok as each user get thier own.

Is this correct?

Indeed, Session is the way to go. Attach the properties to the session, and you’ll be fine.

Thanks Michel, you are the most!

I agree with Michel as this is safest, but if these variables NEVER change for ANY user or are constants, then placing them in modGlobals or app is OK too.

getting session is slow.

so I recommend doing something like

dim s as session = session

in your methods and use local variable s.