0

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);
}
4

1 に答える 1

1

問題は、pwRecover が設定されていないことです。つまり、問題はここにあります:

MembershipUser pwRecover = Membership.GetUser(Login1.UserName);

Membership.GetUser が Login1.UserName のユーザーを見つけられません。

この行にブレークポイントを設定して、Login1.UserName が実際に何であるかを確認してください。次に、データベースでそのユーザー名を探します。

于 2012-06-29T13:36:40.893 に答える