服务器之家:专注于服务器技术及软件下载分享
分类导航

PHP教程|ASP.NET教程|JAVA教程|ASP教程|

服务器之家 - 编程语言 - ASP教程 - 从数据库中读取记录横向排列

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

2019-09-28 11:42asp技术网 ASP教程

在一张网页如果按以下代码从数据库中读取记录,

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

复制代码代码如下:


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

延伸 · 阅读

精彩推荐