home *** CD-ROM | disk | FTP | other *** search
/ Computer Shopper 139 / dpcs0999.iso / Web / CFserver / data1.cab / Documentation / snippets / isdebugmode.cfm < prev    next >
Encoding:
Text File  |  1999-04-12  |  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.