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

  1. <!--- This example shows the YesNoFormat --->
  2. <HTML>
  3. <HEAD>
  4. <TITLE>YesNoFormat Example</TITLE>
  5. </HEAD>
  6.  
  7. <BODY>
  8. <H3>YesNoFormat Example</H3>
  9.  
  10. <P>The YesNoFormat function returns all non-zero values
  11. as "YES" and zero values as "NO".
  12.  
  13. <CFOUTPUT>
  14. <UL>
  15.     <LI>YesNoFormat(1):    #YesNoFormat(1)#    
  16.     <LI>YesNoFormat(0):    #YesNoFormat(0)#    
  17.     <LI>YesNoFormat("1123"):    #YesNoFormat("1123")#    
  18.     <LI>YesNoFormat("No"):    #YesNoFormat("No")#    
  19.     <LI>YesNoFormat(TRUE):    #YesNoFormat(TRUE)#    
  20. </UL>    
  21. </CFOUTPUT>
  22.  
  23. </BODY>
  24. </HTML>       
  25.