电话
13363039260
根据SQL查询条件返回对应的短消息列表,用循环输出。
参数说明:
top: 显示条数,0为显示所有,int类型
strwhere: SQL查询语句
get_user_message_list(top, strwhere)
<!--示例:显示用户名为test的未读短消息列表--><%set DataTable dt=get_user_message_list(0, "type<3 and is_read=0 and accept_user_name='test'")%> <%foreach(DataRow dr in dt.Rows)%> 短消息标题:{dr[title]} <%/foreach%>