Rafael Soto
Rafael Soto

Reputation: 165

ASP session variables leak

How can i look every user session variable on IIS Application Server. This issue is to find a biggest session variable on my application to find a leak because my session timeout requirement is too high.

Upvotes: 0

Views: 206

Answers (1)

schar
schar

Reputation: 2658

for each x in session.Contents 
  Response.Write x & session.Contents (x) 
next

You could have googled it.

Upvotes: 2

Related Questions