电话
13363039260
根据查询条件显示前几行订单列表,用循环输出。
参数说明:
top: 显示条数,0为显示所有,int类型
strwhere: SQL查询语句
get_order_list(top, strwhere)
<!--示例:查询用户名为test所有未完成的订单列表--><%set DataTable dt=get_order_list(0, "status<3 and user_name='test'")%> <%foreach(DataRow dr in dt.Rows)%> ... <%/foreach%>