I am very new to ASP.NET, I'm quite used to PHP (which, unfortunately, we do not use at work) I would like to print all the session variables. In PHP, it's pretty simple, I use:
echo '<pre>' . print_r($_SESSION, true) . '</pre>';
for this, but is there a simple ASP.NET equivalent?
source
share