WebSecurity Property - HasUserId


WebSecurity Object WebSecurity Object

Definition

The HasUserId property is a boolean value that indicates whether the current user has a user ID in the WebSecurity database.

The property value is a boolean true if the current user has a user ID. The default is false.


C# and VB Syntax

WebSecurity.HasUserId


Examples

Example C#

@{
bool value;
value=WebSecurity.HasUserId;
}
<p>It is @value that the user has an ID</p>

Example VB

@Code
Dim value as Boolean
value=WebSecurity.HasUserId
End Code

<p>It is @value that the user has an ID</p>


Remarks

The HasUserID property is read only. It cannot be changed by code.

The HasUserId property only verifies that the user has an ID in the WebSecurity database. It does not verify that the user account is valid (confirmed), or that the user is logged in.

Use the IsConfirmed() method to verify that the user is confirmed.

Use IsAuthenticated property to verify that the user is logged in.


Errors and Exceptions

Any access to the WebSecurity object throws an InvalidOperationException if:

  • The InitializeDatabaseConnection() method has not been called
  • SimpleMembership is not initialized (or disabled in the website configuration)

Technical Data

Name Value
Namespace WebMatrix.WebData
Assembly WebMatrix.WebData.dll


WebSecurity Object WebSecurity Object

Color Picker

colorpicker