gpt4 book ai didi

asp.net - 使用 Session 存储身份验证?

转载 作者:行者123 更新时间:2023-12-04 21:26:10 25 4
gpt4 key购买 nike

我有很多 problems with FormsAuthentication作为潜在的工作,我正在考虑存储 loginSession ?

Login:
Session["Auth.ClientId"] = clientId;

IsAuthenticated:
Session["Auth.ClientId"] != null;

Logout;
Session["Auth.ClientId"] == null;

我并没有真正使用 FormsAuthentication 的大部分花里胡哨反正。这是一个坏主意吗?

最佳答案

我不会在 session 中存储任何有值(value)的信息。

对于身份验证,我会使用:

if (HttpContext.Current.User.Identity.IsAuthenticated)
{
// Then u use
// this.User.Identity.Name as my membership_id so i could call this everywhere
}else
{
//Redirect to Login
//gettting my LoginPageAddress
Response.Redirect(ConfigurationSettings.AppSettings["LoginPage"]);
}

登录是这样的:
FormsAuthentication.SetAuthCookie(membership_ID, false)

无论如何希望这会有所帮助

关于asp.net - 使用 Session 存储身份验证?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2965534/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com