home *** CD-ROM | disk | FTP | other *** search
/ Chip 2002 February / CHIPCD_02_2002.iso / Internet / Macromedia ColdFusion Server 5 / coldfusion-50-win-us.exe / data1.cab / Examples / CFDOCS / snippets / authenticateduser.cfm < prev    next >
Encoding:
Text File  |  2001-06-13  |  697 b   |  24 lines

  1. <!---  This view-only example calls the AuthenticatedUser
  2.        function. --->
  3.  
  4. <HTML>
  5. <HEAD>
  6. <TITLE>AuthenticatedUser Function</TITLE>
  7. </HEAD>
  8.  
  9. <BODY>
  10. <H3>AuthenticatedUser Function</H3>
  11. <P>The AuthenticatedUser function returns the name of the current authenticated user.
  12. <P>This is a view-only example. Refer to the commented
  13. source code for more information.
  14. <!--- Before executing this code, you should create a form to log 
  15.       in a user.  Use the CFAUTHENTICATE tag to provide the user
  16.       access to the secure area.                                     --->
  17. <!---
  18.  
  19. Current Authenticated User: <CFOUTPUT>#AuthenticatedUser()#</CFOUTPUT>
  20. --->
  21.  
  22. </BODY>
  23. </HTML>      
  24.