Hello,
My question is simple.
If Session variables were to be assigned a value inside a shared function,
does the session data visible to other sessions (Other users). I know the
variables used inside the shared function are shared as well, is it same for
session variables...?
example vb.net;
class test
public shared SharedFunction (byVal EmployeeID)
HttpContext.Current.Session("EmployeeID")=Employee ID
return true
end sub
the above shared class is called from code behind.
//Inside Button Submit code, code behind
test.SharedFunction("Bill")
Will the value "Bill" visible bind to the user session or visible all acrosss?
Thanks