marc12
02-21-2004, 02:28 AM
Found this at
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnaspp/html/aspnetsessionstate.asp?f
"An important point about ASP.NET session management is that the life of a session state object begins only when the first item is added to the in-memory dictionary. Only after executing code like in the following snippet, can an ASP.NET session be considered started."
Session["MySlot"] = "Some data";
So I included the comparable VB code in my app and that fixed it.
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnaspp/html/aspnetsessionstate.asp?f
"An important point about ASP.NET session management is that the life of a session state object begins only when the first item is added to the in-memory dictionary. Only after executing code like in the following snippet, can an ASP.NET session be considered started."
Session["MySlot"] = "Some data";
So I included the comparable VB code in my app and that fixed it.