stl:pageInputContents 标签示例
示例一:显示能够翻页的提交表单列表
下面的例子显示名称为"咨询信箱"的提交表单列表,列表下方显示翻页导航。
<stl:dynamic> <stl:pageInputContents pageNum="12" inputName="咨询信箱" cellpadding="2" cellspacing="2"> <stl:inputContent type="Title"></stl:inputContent><br /> </stl:pageInputContents> <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> </stl:dynamic>
解析后的HTML代码: