为什么我可以创建新用户,但当我立即尝试使用他们的凭据进行身份验证时,却失败了?

发布于 2024-08-14 15:14:38 字数 607 浏览 5 评论 0原文

我创建一个新用户,批准他们,然后立即尝试使用我刚刚用于创建用户的凭据进行身份验证...并在 Authenticate 方法中返回“false”。

string username = "me";
string password = "mypassword";
string email = "[email protected]";

Membership.CreateUser(username, password, email);

currentUser = Membership.GetUser(username);
currentUser.IsApproved = true;

bool isAuthenticated = FormsAuthentication.Authenticate(username, password);

我检查了数据库表——用户是使用该用户名、密码和电子邮件创建的。根据数据库表,他们已获得批准。

然而,Authenticate 方法仍然返回 false。

I create a new user, approve them, then immediately attempt to authenticate with the credentials I just used to create the user...and get "false" back the Authenticate method.

string username = "me";
string password = "mypassword";
string email = "[email protected]";

Membership.CreateUser(username, password, email);

currentUser = Membership.GetUser(username);
currentUser.IsApproved = true;

bool isAuthenticated = FormsAuthentication.Authenticate(username, password);

I checked the database table -- the user is created with that username, password, and email. According to the database table, they are approved.

Yet, the Authenticate method still returns false.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

不…忘初心 2024-08-21 15:14:39

您需要在更改其批准状态后调用 UpdateUser 方法...

   Membership.UpdateUser(currentUser);

http://msdn.microsoft.com/en-us/library/system.web.security.membershipuser.isapproved.aspx

You need to call the UpdateUser method after you change their approved status...

   Membership.UpdateUser(currentUser);

http://msdn.microsoft.com/en-us/library/system.web.security.membershipuser.isapproved.aspx

橪书 2024-08-21 15:14:39

身份验证机制可能正在使用尚未级联的不同数据存储。

Likely that the authentication mechanism is using a different data store under the covers that has yet to be cascade to.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文