Request.ServerVariables("LOGON_USER") Problem

  • Thread starter Thread starter dmjames
  • Start date Start date
D

dmjames

For one of our machines, Request.ServerVariables("LOGON_USER") is
returning the wrong value. Person A is logged into the machine (I
watched him log in), but when he retrieves an aspx page
Request.ServerVariables("LOGON_USER") returns the login of a different
user -- a tech who logged in to his machine a week or two ago.

It seems to be this one machine that's the problem. The user's login
on other machines returns the correct value, and the apsx has been
working without any other hitches for some months now.

I tried deleting the temporary Internet files -- no change.

Any ideas on this one, or at least other possibilities to check out?


Thanks,

Dave James
 
Perhaps IIS and ASP.NET are configured to use two different auth schemes?
IIS is requiring windows auth, but ASP.NET wants forms auth and it's got
a persistent cookie for the tech from a week ago.

-Brock
DevelopMentor
http://staff.develop.com/ballen
 
Back
Top