Ektron CMS400.Net Reference
The list summary function is used to display a list of content summaries on a Web page. Here is the format of the list summary function.
<%= ecmListSummary (String folder, boolean recursive, boolean showSummary, String styleInfo, String OrderBy, String showInfo, int maxNumber, String objType, String optionList, String summaryType) %> |
This function is basically the same as the List Summary function in ASP. See List Summary Function for details.
The only difference between the JSP function and the ASP one is the syntax for implementing it. The JSP example is below.
<TR>
<TD>
<%= ecmListSummary ("\Marketing\News",false,true,"",
"Title,asc","DateModified",0,"","","") %>
</TD>
</TR>