Determines whether a user is logged in.
True, if the user, is logged in; False, otherwise.
Security functions, Decision functions
IsUserLoggedIn()
cflogin, cfloginuser, GetAuthUser, GetUserRoles, IsUserInAnyRole, IsUserInRole, "Securing Applications" in the ColdFusion Developer's Guide
ColdFusion 8: Added this function.
<cfif IsUserLoggedIn() >
<cfinclude template="welcome.cfm">
<cfelse>
<cfinclude template="loginform.cfm">
<cfabort>
</cfif>