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

  1. <!--- This shows the use of incrementValue --->
  2.  
  3. <HTML>
  4.  
  5. <HEAD>
  6. <TITLE>
  7. IncrementValue Example
  8. </TITLE>
  9. </HEAD>
  10.  
  11. <BODY>
  12.  
  13. <H3>IncrementValue Example</H3>
  14.  
  15. <P>Returns the integer part of a number Incremented by one.
  16.  
  17. <P>IncrementValue(0): <CFOUTPUT>#IncrementValue(0)#</CFOUTPUT>
  18.  
  19. <P>IncrementValue("1"): <CFOUTPUT>#IncrementValue("1")#</CFOUTPUT>
  20.  
  21. <P>IncrementValue(123.35): <CFOUTPUT>#IncrementValue(123.35)#</CFOUTPUT>
  22.  
  23.  
  24.  
  25. </BODY>
  26.  
  27. </HTML>       
  28.   
  29.