Whatever message this page gives is out now! Go check it out!

cfloginuser

Last update:
May 18, 2026

Description

Identifies an authenticated user to ColdFusion. Specifies the user ID and roles. Used within a cflogin tag.

Category

Syntax

<cfloginuser 
name = "name" 
password = "password" 
roles = "roles">

See also

History

ColdFusion MX 6.1: Changed behavior: if the Session scope is enabled, and the cfapplication tag loginStorage attribute is set to Session, the login remains in effect until the session expires or the user is logged out by the cflogout tag.
ColdFusion MX: Added this tag.

Attributes

Attribute
Req/Opt
Default
Description
name
Required
A user name.
password
Required
A user password.
roles
Required
A comma-delimited list of role identifiers.ColdFusion processes spaces in a list element as part of the element.

Usage

Used inside the cflogin tag to identify the authenticated user to ColdFusion. After you call this function, the GetAuthUser and IsUserInRole return the user name and role information.
Note:
By default, the user information is stored as memory-only cookies. The cfapplication tag or the Application.cfc This.loginStorage variable can specify that login information is stored in the Session scope.

Example

See cflogin.

Share this page

Was this page helpful?
We're glad. Tell us how this page helped.
We're sorry. Can you tell us what didn't work for you?
Thank you for your feedback. Your response will help improve this page.

On this page