Use different session if user logs in multiple times

前端 未结 2 368
失恋的感觉
失恋的感觉 2020-12-22 13:20

On our ASP.NET project, we have the code



        
相关标签:
2条回答
  • 2020-12-22 13:37

    I have implemented something like that in an ASP.NET WebForms application. It creates different sessions for a given user when he runs the application in multiple tabs of a browser. The method I use: I create a SessionID in the login validation function, then it is transfered in a QueryString parameter from one page to the other, and stored in the ViewState of the current form.

    0 讨论(0)
  • 2020-12-22 13:50

    Store the locationcode in Application["locationcode"] variable.

    0 讨论(0)
提交回复
热议问题