How to view Session Variables in Visual Studio 2008 Debugger?

Posted by davemackey on Stack Overflow See other posts from Stack Overflow or by davemackey
Published on 2010-03-30T23:33:58Z Indexed on 2010/03/30 23:43 UTC
Read the original article Hit count: 634

Usually using Visual Studio's debugger is a breeze. Scanning through Locals quickly shows the values of variables, etc. However, I'm at a loss how to find out the values contained in session state variables? Can anyone give me a hand? Lets say I put a breakpoint right after:

Session("first_name") = "Rob Roy"
How do I view the value contained in Session("first_name") from locals?

© Stack Overflow or respective owner

Related posts about ASP.NET

Related posts about visual-studio