<UL Type= "bullettype" >
<CFOUTPUT query="query" ><LI>#Field#
</CFOUTPUT>
Creates a dynamic HTML list populated from a query.
Usage
Use this component to display dynamic lists.
Attributes
QUERY
|
Required. The name of query to display . |
FIELD
|
Required. The name of query column to display.
|
BULLET TYPE
|
Required. The bullet
type. |
Example
<UL Type="Disc" >
<CFOUTPUT query="GetClients" >
<LI>#ClientName#
</CFOUTPUT>
|