嗨,我在 C# 中使用了这个:
FormsAuthentication.RedirectFromLoginPage(userID, chkPersistCookie.Checked)
为我的网络应用程序创建一个 cookie。
我需要知道如何从 cookie 中取回用户 ID?
要获取用户 ID,您只需要访问主体。更多阅读
HttpContext.Current.User.Identity.Name;
如果你想从 cookie 中获取它,cookie 可以读作(我不推荐这个):
HttpCookie authCookie = Request.Cookies[FormsAuthentication.FormsCookieName];