stl:pageContents 翻页内容列表

通过 stl:pageContents 标签在模板中显示翻页内容列表

stl:pageContents 标签示例

示例一:显示能够翻页的内容列表

下面的例子显示当前栏目下的所有内容的列表,列表下方显示翻页导航。

    <stl:pageContents channelIndex="新闻" pageNum="20" cellpadding="2" cellspacing="2">
        <stl:a target="_blank"></stl:a> <stl:content type="AddDate"></stl:content>
    </stl:pageContents>
    <br />
    <stl:pageItems>
        <table cellpadding="0" cellspacing="0" width="90%" height="40" align="center">
        <tr><td align="left">
        <stl:pageItem type="FirstPage" text="首页"></stl:pageItem> |
        <stl:pageItem type="PreviousPage" text="上一页"></stl:pageItem> |
        <stl:pageItem type="NextPage" text="下一页"></stl:pageItem> |
        <stl:pageItem type="LastPage" text="末页"></stl:pageItem>
        </td><td align="right">
        <stl:pageItem type="CurrentPageIndex" text="当前页:"></stl:pageItem>
        <stl:pageItem type="PageNavigation"></stl:pageItem>
        </td></tr></table>
    </stl:pageItems>