最新のWeb開発のチュートリアル
 

WebSecurity社 - GeneratePasswordResetToken()


<WebSecurity社オブジェクト

定義

GeneratePasswordResetToken()メソッドは、電子メールでユーザーに送信することができますパスワードリセットトークンを生成します。


C#とVBの構文

WebSecurity.GeneratePasswordResetToken( userName, expiration )

パラメーター

パラメーター タイプ 説明
userName String ユーザー名
expiration Integer トークンの有効期限が切れるまでの時間(分)。 デフォルトは1440です(24 hours)

戻り値

タイプ 説明
String リセットトークン。

エラーと例外

WebSecurity社のオブジェクトへのアクセスは、InvalidOperationExceptionがある場合にスローされます。

  • InitializeDatabaseConnection()メソッドが呼び出されていません
  • SimpleMembershipが初期化されていない(or disabled in the website configuration)

備考

使用ResetPassword()ユーザーが自分のパスワードを忘れた場合の方法を。 ResetPassword()メソッドは、パスワードリセットトークンが必要です。

確認トークンにより作成することができるCreateAccount() CreateUserAndAccount()またはGeneratePasswordResetToken()メソッド。

パスワードは、コードによってリセットすることができますが、一般的な手順は、ユーザーに電子メールを送信することです(with the token and a link to a page)ので、彼は新しいトークンを使用して新しいパスワードを確認することができます:

@{
newPassword = Request["newPassword"];
confirmPassword = Request["confirmPassword"];
token = Request["token"];
if IsPost
{
    // input testing is ommitted here to save space
    retunValue = ResetPassword(token, newPassword) ;
}
}
<h1>Change Password</h1>

<form method="post" action="">

<label for="newPassword">New Password:</label>
<input type="password" id="newPassword" name="newPassword" title="New password" />

<label for="confirmPassword">Confirm Password:</label>
<input type="password" id="confirmPassword" name="confirmPassword" title="Confirm new password" />

<label for="token">Pasword Token:</label>
<input type="text" id="token" name="token" title="Password Token" />

<p class="form-actions">
<input type="submit" value="Change Password" title="Change password" />
</p>

</form>

技術データ

名前空間 WebMatrix.WebData
アセンブリ WebMatrix.WebData.dll

<WebSecurity社オブジェクト