电话
13363039260
此标签只允许在频道列表页中使用,分页需结合pagination.css。
参数说明:
channel_name:频道名称
category_id:栏目分类ID,0显示所有分类
page_size:每页显示数量
page_index:当前页码,系统默认为page
strwhere:SQL查询语句
totalcount:数据总数,系统默认为totalcount
pagelist:分页字符串变量,系统默认为pagelist
key:URL配置名称
params:URL传输参数
get_article_list(channel_name, category_id, page_size, page_index, strwhere, out totalcount, out pagelist, key, params)
<!--示例一:查询新闻频道分类ID为1的所有记录--> <%set DataTable nlist=get_article_list("news", 1, pagesize, page, "status=0", out totalcount, out pagelist, "news_list", category_id, "__id__")%> <!--使用foreach循环输出--> <%foreach(DataRow dr in nlist.Rows)%> 新闻标题:{dr[title]} <%/foreach%>