User Guide
183
The WIZBREAK and WIZCONTINUE tags have no attributes, and can be placed anywhere
within a
WIZLOOP tag to either exit the loop (WIZBREAK) or move on to the next loop
iteration (
WIZCONTINUE).
WIZIF, WIZELSEIF, and WIZELSE
The WIZIF, WIZELSEIF, and WIZELSE tags work identically to the corresponding CFML
tags. Any valid Boolean expression can be used in the
WIZIF and WIZELSEIF tags.
<WIZIF sDocType eq "HTML 4.0">
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//
EN">
<wizelse sDocType eq "HTML 3.2">
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
<wizelse sDocType eq "HTML 2.0">
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
</WIZIF>
<HTML>
<HEAD>
<TITLE>$${sTitle}</TITLE>
<WIZIF bMetaDescr eq "true">
<META NAME="description" CONTENT="$${sMetaDescr}">
</WIZIF>
<WIZIF bMetaKeywords eq "true">
<META NAME="keywords" CONTENT="$${sMetaKeywords}">
</WIZIF>
</HEAD>
<BODY>
</BODY>
</HTML>
STEP Step value for each increment (can be positive or negative).
CONDITION Conditional expression to control whether the loop should be exited.
LIST A list of CommaText format. This is the format that a Delphi-based string
list uses to store textual representations of itself.
STRINGLIST The name of a parameter created with the SetObjectParameter function
which is of type TStringList.
WIZLOOP Tag Attributes (Continued)
Attribute Description (Continued)