网络安全 - GetPasswordChangeDate()
❮ 网络安全
定义
GetPasswordChangeDate() 方法返回用户密码上次更改的日期和时间。
C# 和 VB 语法
WebSecurity.GetPasswordChangedDate(userName)
参数
参数 | 类型 | 描述 |
---|---|---|
userName | String | 用户名 |
返回值
类型 | 描述 |
---|---|
DateTime | 上次更改密码的日期和时间 |
错误和异常
在以下情况下,对 WebSecurity 对象的任何访问都会引发 InvalidOperationException:
- InitializeDatabaseConnection()方法没有被调用
- SimpleMembership 未初始化(或在网站配置中禁用)
备注
如果从未更改过密码,则 GetPasswordChangeDate() 方法返回 DateTime.MinValue。
DateTime.MinValue 的值是 0001 年 1 月 1 日 00:00:00.0000000。
❮ 网络安全