How do I view the details of an ASP.net Session in IIS as in Java using Tomcat?

0

In the Tomcat manager, we can list the open sessions and see the "details" of each one, including a list of all session variables (key-value) of that session, as shown in the example image below: / p>

Is there something similar in IIS? How can I view all session variables in an active session in IIS Manager? if so, where?

    
asked by anonymous 19.04.2017 / 21:52

1 answer

0

You can enable tracing in your project by adding the following line in your Web.config file:

<configuration>
  <system.web>
     <trace enabled="true" requestLimit="40" pageOutput="true" />
   </system.web>
</configuration>

And after running your project, just add the path: /Trace.axd at the end of the url.

There may be more elegant solutions, but this works fine.

    
11.05.2017 / 20:00