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 - GetUserId()


❮ WebSecurity

Definition

The GetUserId() method returns the ID for the specified user.


C# and VB Syntax

WebSecurity.GetUserId(userName)

Parameters

Parameter Type Description
userName String The user name

Return Value

Type Description
Integer

 The user ID


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)

Remarks

The user ID is the primary key for the user information stored in the user database.

It is used to identify the user, both in the user profile table and in the membership table.


❮ WebSecurity