Saving values in Session in case of concurrent users
Hello all,
I have a simple ASP.NET 4 application with a few pages with a forms on them where the user can insert some values.
At the bottom of each page there is a button that saves these values and redirect the user to the second page, where he can insert other values, and so on, until he reach the last 4th pages.
I'm using the Session["MyObject"] to save these values from one page to the others.
How can I be secure that, in case my application has 2 (or more) concurrent users, each user can use the correct session object?
I mean, can a second user catch the first user's session, intead of the his?
Thanks in advance.
Luigi
|