最新的Web開發教程
 

WebSecurity - UserExists()


<WebSecurity對象

定義

所述UserExists()方法表示,如果用戶在WebSecurity數據庫中存在。


C#和VB語法

WebSecurity.UserExists( userName )

參數

參數 類型 描述
userName String 用戶名

返回值

類型 描述
Boolean 該用戶是否存在 ,否則為false

錯誤和異常

WebSecurity對象的任何訪問將引發一個InvalidOperationException:

  • InitializeDatabaseConnection()方法還沒有被調用
  • SimpleMembership未初始化(or disabled in the website configuration)

備註

所述UserExists()方法僅驗證用戶在用戶簡檔表中存在。

不會驗證會員帳戶存在該用戶,或者用戶被確認,或登錄。


技術數據

名稱
命名空間 WebMatrix.WebData
部件 WebMatrix.WebData.dll

<WebSecurity對象