Is there any way to share Session or any type of variables with their own data between projects?
I have a solution which has 2+ projects in which I have an object called Users
, you login on the first project and I place the whole Users object with all the data in a Session["User"]
variable, and I'll like to later access on a different project but having the same stored data.
As if in my first project a variable has a value = 1 the second project can read it in the second project in the same solution and still have the same value.
EDIT: Found a solution to this within the next link:
Sharing sessions across applications using the ASP.NET Session State Service