<CFMODULE TEMPLATE="template"
    NAME="tag_name"
    ATTRIBUTE="value"
    ATTRIBUTE="value"
    ...>

Use CFMODULE to invoke a custom tag for use in your ColdFusion application pages. CFMODULE can help deal with any custom tag name conflicts that might arise.

Use the TEMPLATE attribute to name a ColdFusion page containing the custom tag definition, including its path. Use the NAME attribute to refer to the custom tag using a dot notation scheme indicating the location of the custom tag in the ColdFusion installation directory.

TEMPLATE

Used in place of NAME, defines a path to the application page (.cfm file) implementing the tag. Relative paths are expanded from the current page. Physical paths are not allowed. Absolute paths are expanded using the ColdFusion mappings.

NAME

Used in place of TEMPLATE, defines the name of the custom tag in the form "Name.Name.Name..." that uniquely identifies a subdirectory containing the custom tag page under the root directory for CF custom tags. For example:

<CFMODULE Name="Allaire.Forums40.GetUserOptions"> 

Identifies the page GetUserOptions.cfm in the directory CustomTags\Allaire\Forums40 under the root directory of the ColdFusion installation.

ATTRIBUTE

Optional. Attributes you want your custom tag to use.