Good Day All

I hope someone can help me. i have a Asp.net web application that is running on 4.51 , When the User login Successfully i return an Object that has info for that user and store this in a Static object. Now my problem is the i

User 1 Login (Welcome James)

and

User 2 Login (WelCome Daniel)

and User 1 refreshes the Page (Welcome Daniel)

My user sessions override each other. i did mess around with the IIS Session before , i just noticed this now. Can anyone help.

Thanks

Recommended Answers

All 3 Replies

Are you using different browsers to test this? Because if you login as both users in a different tab in the same browser then it is recognized as the same session.

We assume that when you say sessions, you mean you are doing something like this...

 Session["userid"] = someData;

in this example, where are you getting this data to assign to the session variable?

Further reading for you...
ASP.NET Session State Overview

Agreed, running on two different browsers at the same time.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.