August 2003
Intermediate to advanced
1140 pages
68h 45m
English
IsUserInRole
IsUserInRole("role")Returns true if the current authenticated user
belongs in the specified role.
IsUserInRole( ) is used in conjunction with
ColdFusion MX’s built-in security. Example:
<cflogin>
<cfquery name="AuthenticateUser" datasource="ProgrammingCF">
SELECT *
FROM Users
WHERE Username='pmoney'
AND Password='#Hash("cat")#'
</cfquery>
<cfloginuser
name="pmoney"
password="#Hash("cat")#"
roles="editor,user">
</cflogin>
<cfoutput>
Is #GetAuthUser( )# an editor? #IsUserInRole("editor")#
</cfoutput>