如何在自定义成员资格中使用“记住我”
本文关键字:记住我 自定义 成员 | 更新日期: 2023-09-27 18:36:04
我在 Web 应用程序中使用自定义成员资格提供程序 4. 并在 web.config 中使用以下代码:
<httpCookies httpOnlyCookies="true" />
<authentication mode="Forms">
<forms loginUrl="~/Login.aspx" timeout="2880" />
</authentication>
会员资格和登录有效,但记住我不起作用。
编辑:
并将此代码用于登录用户:
public static void SetupFormsAuthTicket(string userName, bool persistanceFlag)
{
using (EntitiesConnection EF = new EntitiesConnection())
{
var obj = (from m in EF.Memberships.ToList()
where m.Username == userName
select m).FirstOrDefault();
var userId = obj.UserId;
var userData = userId.ToString(CultureInfo.InvariantCulture);
var authTicket = new FormsAuthenticationTicket(1, //version
userName, // user name
DateTime.Now, //creation
DateTime.Now.AddMinutes(30), //Expiration
persistanceFlag, //Persistent
userData);
var encTicket = FormsAuthentication.Encrypt(authTicket);
var cookie = new HttpCookie(FormsAuthentication.FormsCookieName, encTicket);
if (authTicket.IsPersistent)
{
cookie.Expires = authTicket.Expiration;
}
HttpContext.Current.Response.Cookies.Add(cookie);
}
}
您似乎正在使用表单身份验证。如果是这样,请参阅此.. "记住我"复选框不适用于表单身份验证
下面的行将设置它
FormsAuthentication.RedirectFromLoginPage("UserName",true);
如果第二个参数为真,则"记住我"被激活,否则"记住我"不被激活
并使用此在线工具创建机器密钥并将其添加到您的 web.config 中。
尝试使用cookieless="UseCookies"
<authentication mode="Forms">
<forms loginUrl="~/Login.aspx" timeout="2880" cookieless="UseCookies"/>
</authentication>
[更新]
您应该在用户登录时创建持久性 cookie,例如
public class LoginModel
{
public string UserName { get; set; }
public string Password { get; set; }
public bool RememberMe { get; set; }
}
并在您的登录操作中:
if(ValidateUser(loginModel))
{
FormsAuthentication.SetAuthCookie(model.UserName, model.RememberMe);
}