0

In the Server Variables collection I note there are:

REMOTE_USER
LOGON_USER
AUTH_USER

Do these come from the decypted ".ASPXFORMSAUTH" cookie?

EDIT:

Think I am correct:

        HttpCookie authCookie = Request.Cookies[FormsAuthentication.FormsCookieName];//.ASPXAUTH
        FormsAuthenticationTicket authTicket = FormsAuthentication.Decrypt(authCookie.Value);

Reference : what is ASPXAUTH cookie?

SamJolly
  • 5,945
  • 10
  • 51
  • 105

1 Answers1

0

Think I am correct:

        HttpCookie authCookie = Request.Cookies[FormsAuthentication.FormsCookieName];//.ASPXAUTH
        FormsAuthenticationTicket authTicket = FormsAuthentication.Decrypt(authCookie.Value);

Reference : what is ASPXAUTH cookie?

SamJolly
  • 5,945
  • 10
  • 51
  • 105