gpt4 book ai didi

c# - 在没有密码的情况下验证 MembershipUser?

转载 作者:行者123 更新时间:2023-11-30 18:02:02 29 4
gpt4 key购买 nike

是否可以在没有密码的情况下验证 MembershipUser。我有 gues 用户帐户并且有临时密码,但是我不要求这些用户实际登录。我想在他们的用户 ID 上自动对他们进行身份验证。

这可以做到吗?

FormsAuthentication.SetAuthCookie(publicuser.UserName, false); 

似乎并没有针对 memebrship 提供者实际验证它们。

最佳答案

您可以覆盖 System.ServiceModel.DomainServices.Server.ApplicationServices 中定义的 ValidateUser:

protected override bool ValidateUser(string userName, string password)

然后就可以查看了

if ( IsAGuestAccount( userName ) ) 返回 true;

关于c# - 在没有密码的情况下验证 MembershipUser?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8424002/

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