<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 객체