源码网商城,靠谱的源码在线交易网站 我的订单 购物车 帮助

源码网商城

从数据库中读取记录横向排列

  • 时间:2020-06-25 15:07 编辑: 来源: 阅读:
  • 扫一扫,手机访问
摘要:从数据库中读取记录横向排列
 <table width="100%" border="0" cellpadding="0" cellspacing="0">     <% do while not rs.eof %>     <tr>        <td height="80"><img src="<%= rs("图片")%>" width="160" height="80"></td>           </tr> <% i=i+1 if i>=MaxPerPage then exit do rs.movenext loop %> </table> 记录排列如下: 1 2 3 4 5 如果我想把记录排列改成 1  2  3 4  5 那么以上代码该怎么改,请高手帮忙一下
[u]复制代码[/u] 代码如下:
<table width="100%" border="0" cellpadding="0" cellspacing="0">     <%   i=0      do while not rs.eof    if i mod 3 =0 then %>   <tr>      <% end if %>      <td height="80"><img src="<%= rs("图片")%>" width="160" height="80"></td>         <%    if (i+1) mod 3=0 then   %>   </tr>   <%end if%>      <%      i=i+1   if i>=MaxPerPage then exit do    rs.movenext      loop     %>   </table>
  • 全部评论(0)
联系客服
客服电话:
400-000-3129
微信版

扫一扫进微信版
返回顶部