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:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
2001-06-13
|
391 b
|
20 lines
<!--- This example shows the use of IsDebugMode --->
<HTML>
<HEAD>
<TITLE>
IsDebugMode Example
</TITLE>
</HEAD>
<BASEFONT FACE="Arial, Helvetica" SIZE=2>
<BODY bgcolor="#FFFFD5">
<H3>IsDebugMode Example</H3>
<CFIF IsDebugMode()>
<H3>Debugging has been set via the ColdFusion Administrator</H3>
<CFELSE>
<H3>Debugging is disabled</H3>
</CFIF>
</BODY>
</HTML>