0
I have a session problem in a project where I use C# and ASP.NET. If two people log in at the same time with the same user the section variables get the same values. To be sure I took the ID of the created sections and they are differences so I can’t make a value of one section not interfere with the other.
Does anyone have any idea?
You can each time you log in to generate a new token for the session, if a request comes with a different token than the current one, you direct it to the login page.
– LP. Gonçalves
Could you share a piece of code so we can try to help?
– mcamara