IsUserLoggedIn

Description

Determines whether a user is logged in.

Returns

True, if the user, is logged in; False, otherwise.

Function syntax

IsUserLoggedIn()

See also

cflogin, cfloginuser, GetAuthUser, GetUserRoles, IsUserInAnyRole, IsUserInRole, Securing Applications in the Developing ColdFusion Applications

History

ColdFusion 8: Added this function.

Example

<cfif IsUserLoggedIn() > 
    <cfinclude template="welcome.cfm"> 
<cfelse> 
    <cfinclude template="loginform.cfm"> 
    <cfabort> 
</cfif>