List Summary Function

The list summary function is used to display the list of content summaries on a Web page. Shown here is the format of the list summary function:

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

Folder=""

MaxNumber=""

Recursive=""

ShowSummary=""

StyleInfo=""

OrderBy=""

ShowInfo=""

>

This function is basically the same as the List Summary function in ASP. See List 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="\Marketing\News" MaxNumber="0" Recursive="0"

ShowSummary="1" StyleInfo="" OrderBy="Title,asc" ShowInfo="" >

</TD>

</TR>

Previous TopicNext Topic|