Please note, this is a STATIC archive of website www.w3schools.com from 05 May 2020, cach3.com does not collect or store any user information, there is no "phishing" involved.
THE WORLD'S LARGEST WEB DEVELOPER SITE

WebSecurity Property - CurrentUserName


❮ WebSecurity

Definition

The CurrentUserName property is the name of the current user in the user profile table in the WebSecurity database.


C# and VB Syntax

WebSecurity.CurrentUserName

Examples

Example C#

@{
string value;
value=WebSecurity.CurrentUserName;
}

<p>Welcome @value</p>

Example VB

@Code
Dim value as String
value=WebSecurity.CurrentUserName
End Code

<p>Welcome @value</p>

Remarks

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


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)

❮ WebSecurity