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