I want to define a variable or object like session, to stored data about each user, and i want to access this object in many pages,
could u please tell me if there is a way.
thanks
I want to define a variable or object like session, to stored data about
Share
You can store data in a cookie and then in your codebehind parse the specific cookie into something like a System.Collections.Generic.Dictionary
But you should use sessions.
Edit
IF if’s a
KeyValuePair<String,TValue>you can setSession[kvp.Key] = kvp.Value;, if notSession["KVP"] = kvp;