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

  1. <!--- This view-only example uses CFREGISTRY with
  2.       the GetAll Action --->
  3. <HTML>
  4. <HEAD>
  5. <TITLE>CFREGISTRY ACTION="GetAll"</TITLE>
  6. </HEAD>
  7.  
  8. <BODY>
  9. <H1>CFREGISTRY ACTION="GetAll"</H1>
  10. <P>
  11. Registry access is a sensitive area.
  12. Consider using the ColdFusion Administrator to
  13. secure the CFREGISTRY function.
  14. <!---
  15. <CFREGISTRY ACTION="GetAll"
  16.   BRANCH="HKEY_LOCAL_MACHINE\Software\Microsoft\Java VM"
  17.   TYPE="Any" NAME="RegQuery">
  18. <P>
  19. <CFTABLE QUERY="RegQuery" COLHEADERS HTMLTABLE BORDER="Yes">
  20. <CFCOL HEADER="<B>Entry</b>" WIDTH="35" TEXT="#RegQuery.Entry#">
  21. <CFCOL HEADER="<B>Type</b>" WIDTH="10" TEXT="#RegQuery.Type#">
  22. <CFCOL HEADER="<B>Value</b>" WIDTH="35" TEXT="#RegQuery.Value#">
  23. </CFTABLE> --->
  24. </BODY>
  25. </HTML>