home *** CD-ROM | disk | FTP | other *** search
/ PC User 2001 August / APC_Aug2001_CD2.iso / features / coldfusn / files / coldfusion-50-win-us.exe / data1.cab / Examples / CFDOCS / snippets / isdebugmode.cfm < prev    next >
Encoding:
Text File  |  2001-05-24  |  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.