I am creating an application using session variables. I created the HistoryLine class and the other a HistoryLineCollection with the HistoryLine list. Then I save an instance of HistoryLineCollection for the session as follows:
Session ["HistoryLines"] = hLines;
The problem is that when I watch it on another computer, I see the same list! I was thinking about sessions where the client is unique? I looked at sessionState and maybe SessionID is cloned or something like that, but I just can't see it. Does anyone have an idea?
source
share