我是靠谱客的博主 粗暴猎豹,最近开发中收集的这篇文章主要介绍从数据库中读取记录横向排列,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

 <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
那么以上代码该怎么改,请高手帮忙一下

复制代码 代码如下:

<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>

最后

以上就是粗暴猎豹为你收集整理的从数据库中读取记录横向排列的全部内容,希望文章能够帮你解决从数据库中读取记录横向排列所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(115)

评论列表共有 0 条评论

立即
投稿
返回
顶部