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 - IsAuthenticated


❮ WebSecurity

Definition

The IsAuthenticated property is a boolean value that indicates whether the current user is authenticated (logged in).

The property value is a boolean true if the current user is authenticated, otherwise false.


C# and VB Syntax

WebSecurity.IsAuthenticated

Examples

Example C#

if (!WebSecurity.IsAuthenticated)
{
Response.Redirect("~/Account/Login");
}

Example VB

if !WebSecurity.IsAuthenticated then
  Response.Redirect("~/Account/Login")
end if

Remarks

The IsAuthenticated 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