Menu
×
   ❮     
HTML CSS JAVASCRIPT SQL PYTHON JAVA PHP HOW TO W3.CSS C C++ C# BOOTSTRAP REACT MYSQL JQUERY EXCEL XML DJANGO NUMPY PANDAS NODEJS R TYPESCRIPT ANGULAR GIT POSTGRESQL MONGODB ASP AI GO KOTLIN SASS VUE DSA GEN AI SCIPY CYBERSECURITY DATA SCIENCE
     ❯   

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