I am trying to keep track of something and using the SessionID as they key to that object
However the SessionID every 2-3 reqiests changes shouldn\'t it remain the s
You should initialize the Session object within Global.asax.cs.
Global.asax.cs
void Session_Start(object sender, EventArgs e) { HttpContext.Current.Session.Add("__MyAppSession", string.Empty); }
This way the session will not change unless your browser window is closed.