Link to home
Start Free TrialLog in
Avatar of Starr Duskk
Starr DuskkFlag for United States of America

asked on

Properties in a Class

Just to confirm...

I have a class. in the class I define a value by default.

Dim ClientId as integer = 5

When a user logs in an uses the class they can change the clientid to something else, perhaps 7.

Once the one user changes it to 7, and another user logs in, the new user will still get 5 won't they? Or will they get 7 because I didn't create it as a session property?

thanks!
ASKER CERTIFIED SOLUTION
Avatar of kaufmed
kaufmed
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Starr Duskk

ASKER

okay, that's what I was trying to remember. How that happened in the past. It was a static variable. thanks!