I am building a class to store User ID and User Role in a session. I\'m not sure how this class will behave when multiple users are on the site at the same time. Does anyone
You'll get a new session for each connection. No two users will ever share session. Each connection will have its own SessionID value. As long as the user stays on your page (doesn't close the browser, etc.) the user will retain that session from one request to the next.