Webフォームにパスワード回復コントロールがあります。必要な情報をすべて入力すると、ユーザーのメールアカウントにメールが送信されます。
たとえば、ユーザーが自分のパスワードを忘れた場合、新しいパスワードの代わりにパスワード変更リンクをユーザーの電子メールアカウントに送信します。
ただし、送信ボタンをクリックした後、「オブジェクト参照がオブジェクトのインスタンスに設定されていません」。エラーが表示されます。
Exception Details: System.NullReferenceException: Object reference not set to an instance of an object. And the error occurred on line 66.
Source Error:
Line 64: System.Web.UI.WebControls.Login Login1 = (System.Web.UI.WebControls.Login)LoginView1.FindControl("Login1");
Line 65: MembershipUser pwRecover = Membership.GetUser(Login1.UserName);
**Line 66: Guid userInfoId2 = (Guid)pwRecover.ProviderUserKey;**
以下は、メッセージ本文の送信URLの背後にあるコードです。
protected void PasswordRecovery1_SendingMail(object sender, MailMessageEventArgs e)
{
System.Web.UI.WebControls.Login Login1 = (System.Web.UI.WebControls.Login)LoginView1.FindControl("Login1");
MembershipUser pwRecover = Membership.GetUser(Login1.UserName);
Guid userInfoId2 = (Guid)pwRecover.ProviderUserKey;
//Create an url that will link to a UserProfile.aspx and
//accept a query string that is the user's id
//setup the base of the url
string domainName = Request.Url.GetLeftPart(UriPartial.Authority) + Request.ApplicationPath;
//setup the second half of the url
string confirmationPage = "/UserProfile.aspx?ID=" + userInfoId2.ToString();
//combine to make the final url
string url = domainName + confirmationPage;
// Replace <%VerifyUrl%> placeholder with url value
e.Message.Body = e.Message.Body.Replace("<%ResetPassword%>", url);
}