Whatever message this page gives is out now! Go check it out!
<cfassociate
baseTag = "base tag name"
dataCollection = "collection name">Attribute | Req/Opt | Default | Description |
baseTag | Required | Base tag name. | |
dataCollection | Optional | AssocAttribs | Structure in which base tag stores subtag data. |
<!--- Find the context. --->
<cfif thisTag.executionMode is "start">
<!--- Associate attributes. --->
<cfassociate baseTag = "CF_TAGBASE">
<!--- Define defaults for attributes. --->
<cfparam name = "attributes.happy" default = "yes">
<cfparam name = "attributes.sad" default = "no">
...