我正在尝试使用确认电子邮件设置会员提供商。User
使用 memb 成功注册。提供者。
注册后,将发送一封确认电子邮件userProviderKey
,用于批准用户。链接发送如下
http://localhost:48992/Account/Verify/e37df60d-b436-4b19-ac73-4343272e10e8
用户必须单击使用密钥 (providerUserKey) 发送的链接,问题是该密钥在调试模式下甚至不显示为参数
// in debug providerUserKey is null
public ActionResult Verify(string providerUserKey)
{
}
可能是什么问题?