I use Microsoft Visual Studio 2010 Professional and am developing an asp.net/C# application. In debug mode, I see local variables on the tab "Locals", and there is also something called "this", which expands into several tree structures. However, I cannot find the name / value pair of the Session variables anywhere.
A friend suggested I use the Immediate Window tab and enter the name of my session variable (ie Session ["SomeValue"] and press enter. This gives me the value of the Session variable. Itβs enough for one session variable, but when working with multiple variables it getting a little bulky.
Is there anyway that I can just go to the section that stores the key / value pair for all my session variables, for example, can I use local variables?
source share