home *** CD-ROM | disk | FTP | other *** search
/ Chip 2002 February / CHIPCD_02_2002.iso / Internet / Macromedia ColdFusion Server 5 / coldfusion-50-win-us.exe / data1.cab / Examples / CFDOCS / snippets / isdebugmode.cfm < prev    next >
Encoding:
Text File  |  2001-06-13  |  391 b   |  20 lines

  1. <!--- This example shows the use of IsDebugMode --->
  2. <HTML>
  3. <HEAD>
  4. <TITLE>
  5. IsDebugMode Example
  6. </TITLE>
  7. </HEAD>
  8.  
  9. <BASEFONT FACE="Arial, Helvetica" SIZE=2>
  10. <BODY  bgcolor="#FFFFD5">
  11. <H3>IsDebugMode Example</H3>
  12. <CFIF IsDebugMode()>
  13.   <H3>Debugging has been set via the ColdFusion Administrator</H3>
  14. <CFELSE>
  15.   <H3>Debugging is disabled</H3>
  16. </CFIF>
  17.  
  18. </BODY>
  19. </HTML>       
  20.