Hey there, I'm making an application that makes use of session variables. I have created a class "HistoryLine" and another called "HistoryLineCollection" with a list of "HistoryLine"s in it. I then save the instance of the HistoryLineCollection to the session like this:
Session["HistoryLines"] = hLines;
The problem is that when I watch this on another computer, I see the same list! I thought sessions where client unique? I have looked into the sessionState and maybe the SessionID is cloned or something, but I just can't see it. Anyone has an idea?