codecamp

WebSecurity CreateAccount 方法

WebSecurity - CreateAccount()


WebSecurity 对象 WebSecurity 对象

定义

CreateAccount() 方法使用用户名和密码在用户数据库中创建一个新的帐户,并且可根据需要指定用户是否必须明确地确认帐户。


C# 和 VB 语法

WebSecurity.CreateAccount(username, password, requireConfirmation)


参数

参数 类型 描述
userName String 用户名
password String 用户密码
requireConfirmation Boolean 如果账户必须使用令牌返回值进行确认,则返回 true。默认返回 false


返回值

类型 描述
String 可发送给用户进行帐户确认的令牌。


错误和异常

在下面的情况下,任何对 WebSecurity 对象的访问将抛出一个 InvalidOperationException

  • InitializeDatabaseConnection() 方法没有被调用
  • SimpleMembership 没有初始化(或者在网站配置中禁用)

在下面的情况下,CreateAccount() 方法也抛出一个 MembershipCreateUserException

  • 用户名为空
  • 用户名已经有一个会员帐户
  • 密码为空
  • 密码太长
  • 数据库操作失败

技术数据

名称
Namespace WebMatrix.WebData
Assembly WebMatrix.WebData.dll


WebSecurity 对象 WebSecurity 对象
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }