Hi,
ASP NET MVC last logged in user always replaces the previous logged in user
I have an ASP NET MVC app.
On this ASP NET MVC app getting the current user with
Welcome @HttpContext.Current.User.Identity.Name
But I have verified that the last logged in user always replaces the previous logged in user
e.g. the user Foo connects at hours 11:35 and on the View of app, I see on the browser
Welcome Foo
the user Foo2 connects at hours 11:45 from other devices and on the View of app, I see on my browser
Welcome Foo2
The user Foo replaced on the app user Foo2.
Welcome Foo2
If restart browser I see always
How do fix this?
What is wrong?
Thanks