欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

從數(shù)據(jù)庫中讀取記錄橫向排列

 更新時間:2008年04月08日 20:31:45   作者:  
在一張網(wǎng)頁如果按以下代碼從數(shù)據(jù)庫中讀取記錄,
 <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>

相關文章

最新評論