RSS List Summary Function

The RSS summary function is used to create an XML list of content summaries for RSS Syndication. Shown here is the format of the RSS list summary function:

<CFMODULE template="#request.ecm.AppPath#ecmListSummary.cfm"

Folder=""

MaxNumber=""

Recursive=""

OrderBy=""

>

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

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

List Summary Example

<TR>

<TD>

<CFMODULE template="#request.ecm.AppPath#ecmListSummary.cfm"

Folder="\books" MaxNumber="0" Recursive="0"

OrderBy="Title,asc" >

</TD>

</TR>

Previous TopicNext Topic|