Metadata Function

The metadata tag is used to display the metadata for one or more content blocks in the Ektron CMS400.NET Web site. Inserting this custom tag will allow you to generate the list of metadata that is edited by the authors, and insert it in the source of the Web page. Shown below is an example of what the metadata custom tag looks like.

<cfmodule template="#request.ecm.AppPath#ecmMetadata.cfm" ItemList="" >

This function is basically the same as the Metadata function in ASP. See Metadata Function for details.

The only difference between the Coldfusion function and the ASP one is the syntax for implementing it. The ColdFusion examples are below.

<cfmodule template="#request.ecm.AppPath#ecmMetadata.cfm" ItemList="[1][2]">

<cfmodule template="#request.ecm.AppPath#ecmMetadata.cfm"

ItemList="[1;title][2;keywords]>

<cfmodule template="#request.ecm.AppPath#ecmMetadata.cfm"

ItemList="[1][2;title,keywords]>

Previous TopicNext Topic|