c# - Alternative for Session["variable"] in FormsAuthentication -


we using formsauthentication login process. need add data logged in users session use in pages.

it can done using session["variable"] = value, read few articles said not use session variables formsauthentication.

is there similar alternative session["variable"] use formsauthentication?

consider using userdata property of formsauthenticationticket, created, encrypted, , stored in forms cookie if using asp.net forms authentication. purpose of field store free form data of sort describing.


Comments