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

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