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

asp循環(huán)行數(shù)輸出函數(shù)

 更新時(shí)間:2008年07月25日 23:54:43   作者:  
一直以來(lái)都很頭疼Asp里面的多行或者多列循環(huán) 今天算是有收獲了以下代碼貼出來(lái)為自己留念一下
經(jīng)過(guò)大鳥(niǎo)哥的指導(dǎo)已做全面的修改,本人能力有限只能做到下面這步了:

ASP/Visual Basic代碼 
復(fù)制代碼 代碼如下:

<%         
Const p=6 '每頁(yè)2條         
set rs = server.createobject("adodb.recordset")         
sql = "Select * from show order by id Desc"        
rs.Open sql,conn,1         

i=0        
do while not rs.eof         
%>  <td align="center" height="98">        
    <a href="show.asp?id=<%=rs("id")%>">        
    <img src="<%=rs("pic")%>" width="150" height="98" alt="<%=rs("name")%>" /></a>        
  </td>     
<%     
If (i+1) Mod 3 =0 Then    
 Response.Write "</tr>"    
 If i<(p-1) Then Response.Write "<tr>"    
End If    
i=i+1     
if i>p then exit do     
rs.movenext     
Loop    
If i Mod 3 <>0 Then      
 For m=3-(i Mod 3) To 1 Step -1     
  response.write"<td> </td>"    
 Next    
 response.write"</tr>"    
End If      
If i = 3 Then    
 response.write" <td> </td><td> </td><td> </td></tr>"    
End if     
rs.close     
set rs=nothing     
%>    



之前的代碼未更改 

復(fù)制代碼 代碼如下:

<%     
Const p=6 '每頁(yè)2條     
set rs = server.createobject("adodb.recordset")     
sql = "Select * from show order by id Desc"    
rs.Open sql,conn,1     

i=1    
do while not rs.eof     
%>  <td align="center" height="98">    
    <a href="show.asp?id=<%=rs("id")%>">    
    <img src="<%=rs("pic")%>" width="150" height="98" alt="<%=rs("name")%>" /></a>    
  </td>    
<%     
if i mod 3 = 0 then     
Response.Write("</tr><tr>")     
end if     
i=i+1     
if i>p then exit do     
rs.movenext     
Loop     
rs.close     
set rs=nothing    
%> 

相關(guān)文章

最新評(píng)論