Hello, we have a very simple site. There is a content folder, and a Content Template that lists it.
It has a single DataRule of type List, pointing to the Content Folder.
<%
var articles = this.GetContents("ArticleList");
foreach (var item in articles)
{
%>
<li>
<%= Html.PageLink(item["Title"].ToString(),"help",new {ArticleId= item["ArticleId"]}) %>
</li>
<%
}
%>
This works, but only lists the first 20 items. How do I get the rest of them?
(Kooboo2)
Thanks