Does the server keep session variables for evryone that enters the site?
So if 3 ppl are at my site at one time, does the server have 3 instances of every session variable?
Printable View
Does the server keep session variables for evryone that enters the site?
So if 3 ppl are at my site at one time, does the server have 3 instances of every session variable?
Yes, if your site uses sessions, unless the user only looks at pages without session tracking (non-ASP or ASP with session state disabled). That's why you're not supposed to store objects as session variables.