Problems with session distinction when two people log in with the same user

0

I'm having 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 have the same values. To be sure I have taken the ID of the sections created and they are differences, so I can not make a value from one section not interfere with the other.

Does anyone have any ideas?

    
asked by anonymous 18.07.2017 / 21:55

1 answer

0

You can create an id using the machine's IP or even browser identification information, and you can transform this information into a single MD5 for each connection.

    
20.07.2017 / 17:53