In aspx.net, what is the difference between
Context.User.Identity.Name
and
HttpContext.Current.User.Identity.Name
Im currently using the Context.User.Identity.Name from a masterpage and are having trouble with user identitys beeing mixed up (user A sees user B data). Could this be the source of the problem?
They are identical.
Contexthas a reference to the currentHttpContextwhich is the same asHttpContext.Current. So, I don’t think this is causing the problem that you are having.