Hello, I just posted this message in the vb.net group, but after I typed it, I realized it was really meant for here.. Here it goes...
Hello. Does anyone know an eays way to pass variables from a class module to another class module. For instance a logon id, or some other information. Even pass a connection object?
I thought about using "Shared" variables, but this will not work as I am coding in asp.net. "Shared variables" are shared among all sessions and not just an individual user. In other words, if 50 people are logged in, then they get the same values in all 50 sessions. I want each user to have their own values.
I know I can use Session variables, but we are trying to not use those at all for this site. Plus, I don't need to persist any variables every time the forms are submitted.
Thanks for your help! ;-)
Emme
Hello. Does anyone know an eays way to pass variables from a class module to another class module. For instance a logon id, or some other information. Even pass a connection object?
I thought about using "Shared" variables, but this will not work as I am coding in asp.net. "Shared variables" are shared among all sessions and not just an individual user. In other words, if 50 people are logged in, then they get the same values in all 50 sessions. I want each user to have their own values.
I know I can use Session variables, but we are trying to not use those at all for this site. Plus, I don't need to persist any variables every time the forms are submitted.
Thanks for your help! ;-)
Emme