精品熟女碰碰人人a久久,多姿,欧美欧美a v日韩中文字幕,日本福利片秋霞国产午夜,欧美成人禁片在线观看

WebSecurity CreateUserAndAccount 方法

websecurity - createuserandaccount()

websecurity 對象 websecurity 對象

定義

createuserandaccount() 方法使用用戶名和密碼在用戶數據庫中創建一個新的帳戶,并且可根據需要指定用戶是否必須明確地確認帳戶。

c# 和 vb 語法

websecurity.createuserandaccount(username, password, propertyvalues, requireconfirmation)

參數

參數 類型 描述
username string 用戶名
password string 用戶密碼
propertyvalues object 一個包含額外的用戶屬性的字典
requireconfirmation boolean 如果賬戶必須使用令牌返回值進行確認,則返回 true。默認返回 false。

返回值

類型 描述
string 可發送給用戶進行帳戶確認的令牌。

備注

createuserandaccount() 方法在 websecurity 數據庫中的用戶資料表中創建一個新的入口,然后在會員表中創建一個匹配的入口。

您可以為 requireconfirmationtoken 參數傳遞 true 來要求用帳戶必須經過用戶確認。如需確認帳戶,您必須從 createuserandaccount() 方法獲得令牌作為返回值。

如果您想手動維護用戶資料表,并且只想為用戶創建會員表入口,請調用 createaccount() 方法。

錯誤和異常

在下面的情況下,任何對 websecurity 對象的訪問將拋出一個 invalidoperationexception:

  • initializedatabaseconnection() 方法沒有被調用
  • simplemembership 沒有初始化(或者在網站配置中禁用)

在下面的情況下,createuserandaccount() 方法也拋出一個 membershipcreateuserexception:

  • 用戶名為空
  • 用戶名已經有一個會員帳戶
  • 密碼為空
  • 密碼太長
  • 數據庫操作失敗

技術數據

名稱
namespace webmatrix.webdata
assembly webmatrix.webdata.dll

websecurity 對象 websecurity 對象
相關文章