show/hide this revision's text 2 fixed code to be more c# like

Wouldn't the simplest solution be to update references to Session objects that are company dependent with a dynamic key based on the Company?

For example...

Session("IsTest")

Session["IsTest"]

becomes

Session(createSessionKey(CompanyID

Session[createSessionKey(CompanyID, "IsTest"))
IsTest")]

where createSessionKey generates the corresponding key possibly by a simple concatenation of Company and Key

This would then differentiate the two or more companies by accessing the session via generated keys.

Following the example above, company1 would access the "IsTest" Session variable via the key "company1_IsTest" and company2 would access the "same" "IsTest" Session variable via the key "company2_IsTest".

Hopefully you have don't have things like Session("IsTest") littered all over your code base as that would make refactoring your code a real pain.

Typically I abstract my Session variables into a strongly typed class. Then my session management is contained in one place.

Using the idea of having a base Page class and overriding the Session property is a nice way to go if all you Session variables are to be company specific. Though if you can determine if a particular Session key is a generic Session variable or company specific then it may still be workable.

show/hide this revision's text 1

Wouldn't the simplest solution be to update references to Session objects that are company dependent with a dynamic key based on the Company?

For example...

Session("IsTest")

becomes

Session(createSessionKey(CompanyID, "IsTest"))

where createSessionKey generates the corresponding key possibly by a simple concatenation of Company and Key

This would then differentiate the two or more companies by accessing the session via generated keys.

Following the example above, company1 would access the "IsTest" Session variable via the key "company1_IsTest" and company2 would access the "same" "IsTest" Session variable via the key "company2_IsTest".

Hopefully you have don't have things like Session("IsTest") littered all over your code base as that would make refactoring your code a real pain.

Typically I abstract my Session variables into a strongly typed class. Then my session management is contained in one place.

Using the idea of having a base Page class and overriding the Session property is a nice way to go if all you Session variables are to be company specific. Though if you can determine if a particular Session key is a generic Session variable or company specific then it may still be workable.