<WebSecurity社オブジェクト
定義
ResetPassword()メソッドは、パスワードのトークンを使用してユーザーのパスワードをリセットします。
C#とVBの構文
WebSecurity.ResetPassword( passwordResetToken,newPassword)
パラメーター
パラメーター | タイプ | 説明 |
---|---|---|
passwordResetToken | String | パスワードトークン |
newpassword | String | 新しいパスワード |
戻り値
タイプ | 説明 |
---|---|
Boolean | パスワードが変更された場合はtrue、そうでない場合はfalse |
エラーと例外
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社オブジェクト