home *** CD-ROM | disk | FTP | other *** search
/ Computer Shopper 139 / dpcs0999.iso / Web / CFserver / data1.cab / Documentation / snippets / bitnot.cfm < prev    next >
Encoding:
Text File  |  1999-04-12  |  376 b   |  23 lines

  1. <!--- This example shows BitNot --->
  2.  
  3. <HTML>
  4.  
  5. <HEAD>
  6. <TITLE>BitNot Example</TITLE>
  7. </HEAD>
  8.  
  9. <BASEFONT FACE="Arial, Helvetica" SIZE=2>
  10. <BODY  bgcolor="#FFFFD5">
  11.  
  12. <H3>BitNot Example</H3>
  13.  
  14. Returns the bitwise NOT of a long integer.
  15.  
  16. <P>BitNot(0): <CFOUTPUT>#BitNot(0)#</CFOUTPUT>
  17.  
  18. <P>BitNot(255): <CFOUTPUT>#BitNot(255)#</CFOUTPUT>
  19.  
  20. </BODY>
  21.  
  22. </HTML>       
  23.