电话
13363039260
根据SQL查询条件返回对应的充值记录分页列表,用循环输出。
参数说明:
page_size: 每页显示条数,int类型
page_index: 当前页码,int类型
strwhere: SQL查询语句
totalcount: 记录总数,out参数,int类型
get_user_recharge_list(page_size, page_index, strwhere, out totalcount)
<!--示例:显示用户名为test充值记录分页列表--><!--取得一个DataTable,page为当前页码变量,totalcount为已声明的变量--><%set DataTable dt=get_user_recharge_list(10, page, "user_name='test'", out totalcount)%><!--取得分页页码列表,action为变量,相关说明请查阅get_page_link分页标签--><%set string pagelist=get_page_link(10, page, totalcount, "useramount", action, "__id__")%><!--使用循环输出--><%foreach(DataRow dr in dt.Rows)%> ... <%/foreach%> 记录总数:{totalcount} 页码:{pagelist}