tags:

views:

24

answers:

1

Hi folks,

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.

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

You could have googled it.

schar
Thanks my friend but you missunderstood look it "every user session variable"
Rafael Soto
Can you specify ?
schar