WebSecurity ResetPassword 方法
websecurity - resetpassword()
websecurity 对象定义
resetpassword() 方法使用密码令牌重置用户密码。
c# 和 vb 语法
websecurity.resetpassword(passwordresettoken,newpassword)
参数
参数 | 类型 | 描述 |
---|---|---|
passwordresettoken | string | 密码令牌 |
newpassword | string | 新密码 |
返回值
类型 | 描述 |
---|---|
boolean | 如果密码已更改,则返回 true,否则返回 false。 |
错误和异常
在下面的情况下,任何对 websecurity 对象的访问将抛出一个 invalidoperationexception:
- initializedatabaseconnection() 方法没有被调用
- simplemembership 没有初始化(或者在网站配置中禁用)
备注
如果用户已忘记密码,请使用 resetpassword 方法。
resetpassword 方法要求一个密码重置令牌。
确认令牌可通过 createaccount()、 createuserandaccount() 或 generatepasswordresettoken() 方法创建。
密码可通过代码重置,但是一般过程是发送电子邮件给用户(带有令牌和指向页面的链接),这样用户就可以通过新的令牌确认新的密码:
@{
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>
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>
技术数据
名称 | 值 |
---|---|
namespace | webmatrix.webdata |
assembly | webmatrix.webdata.dll |
websecurity 对象
相关文章
- ASP.NET
- ASP.NET Web Pages 布局
- ASP.NET Web Pages 全局文件
- ASP.NET Web Pages HTML 表单
- ASP.NET Web Pages 文件
- ASP.NET Web Pages 类参考手册
- ASP.NET Web Pages WebMail 参考手册
- ASP.NET Razor C# 逻辑
- ASP.NET Razor VB 循环和数组
- ASP.NET MVC Web 应用程序
- ASP.NET MVC 控制器
- ASP.NET MVC 视图
- ASP.NET MVC 安全
- ASP.NET MVC HTML 帮助器
- ASP.NET Web Forms 教程
- ASP.NET 事件句柄
- ASP.NET Web 表单
- ASP.NET Button 控件
- ASP.NET Repeater 控件
- ASP.NET DataList 控件