what does it mean when my VB.NET returns:
returns "NT AUTHORITY"
and
returns "NETWORK SERVICE"
instead of
returns "MY DOMAIN"
and
returns "MY USER NAME"
My app seems to no longer recognize who is logged in, which is annoying me to no end right now.
Code:
Response.Write(System.Environment.UserDomainName)
and
Code:
Reponse.Write(System.Environment.UserName)
instead of
Code:
Response.Write(System.Environment.UserDomainName)
and
Code:
Reponse.Write(System.Environment.UserName)
My app seems to no longer recognize who is logged in, which is annoying me to no end right now.