home *** CD-ROM | disk | FTP | other *** search
/ Australian Personal Computer 1999 April / APC443.iso / features / grpware / coldfus / coldfusi.exe / data1.cab / Documentation / snippets / cfregistryset.cfm < prev    next >
Encoding:
Text File  |  1998-10-08  |  589 b   |  26 lines

  1. <!--- This view-only example uses CFREGISTRY with
  2.       the Set Action --->
  3. <HTML>
  4. <HEAD>
  5. <TITLE>CFREGISTRY ACTION="Set"</TITLE>
  6. </HEAD>
  7. <BODY>
  8. <H1>CFREGISTRY ACTION="Set"</H1>
  9.  
  10. <!--- Normally you pass in a file name
  11.       instead of setting one here. --->
  12. <CFSET FileName="dummy.cfm">
  13. <P>
  14. Registry access is a sensitive area.
  15. Consider using the ColdFusion Administrator to
  16. secure the CFREGISTRY function.
  17. <!---
  18. <CFREGISTRY ACTION="Set"
  19.   BRANCH="HKEY_LOCAL_MACHINE\Software\cflangref"
  20.   ENTRY="LastCFM01" TYPE="String" VALUE="#FileName#"> --->
  21.  
  22. </BODY>
  23. </HTML>
  24.  
  25.  
  26.