ASP.NET 具有标识的 Web 窗体



我创建了一个Web Forms 4.5.2测试应用程序。这是一个由两部分组成的问题。

(1)我看到安装了Microsoft.AspNet.Identity.Core。此版本是与 Web 窗体兼容还是仅与 ASP.NET 核心应用程序兼容?

(2)尝试使重置密码表单正常工作时,我收到无用的通用错误消息,因此我调试了以下开箱即用的代码:

protected void Reset_Click(object sender, EventArgs e)
{
    string code = IdentityHelper.GetCodeFromRequest(Request);
    if (code != null)
    {
        var manager = Context.GetOwinContext().GetUserManager<ApplicationUserManager>();
        var user = manager.FindByName(Email.Text);
        if (user == null)
        {
            ErrorMessage.Text = "No user found";
            return;
        }
        var result = manager.ResetPassword(user.Id, code, Password.Text);
        if (result.Succeeded)
        {
            Response.Redirect("~/Account/ResetPasswordConfirmation");
            return;
        }
            ErrorMessage.Text = result.Errors.FirstOrDefault();
            return;
        }
        ErrorMessage.Text = "An error has occurred";
        return;
    }
}

IdentityHelper.GetCodeFromRequest(Request) 返回 null。在 IdentityModels.cs 类中,我看到以下内容:

public const string CodeKey = "code";
public static string GetCodeFromRequest(HttpRequest request)
{
    return request.QueryString[CodeKey];
}

我本来希望这开箱即用吗?由于没有生成查询参数,我是否应该假设我们应该自己编写代码?这里是否需要 CodeKey 查询参数,或者是否有其他方法可以获取 ResetPassword 方法所需的令牌?

  1. 是的,它兼容。

  2. "代码"在忘记.aspx.cs中生成:

    string code = manager.GeneratePasswordResetToken(user.Id);
    //(out of the box its commented out)
    

    并通过电子邮件发送,无需代码,每个人都可以重置。

相关内容

  • 没有找到相关文章

最新更新