Where is the authentication data stored

  • Thread starter Thread starter ad
  • Start date Start date
A

ad

I used think the authentication data of login controls is stored in Session
object.
But it wrong.
Where is the authentication data stored?
 
I used think the authentication data of login controls is stored in Session
object.
But it wrong.
Where is the authentication data stored?

most probably in a cookie.

Wiktor Zychla
 
It should be stored in a FormsAuthentication Ticket cookie on the user's
browser. The information is then available through the
HttpContext.Current.User

Hope this helps,
Mark Fitzpatrick
Microsoft MVP - FrontPage
 
Back
Top