| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 651 人关注过本帖
标题:[求助]如果从数据库中取6张图片,如何进行每行3个的显示?
取消只看楼主 加入收藏
jscalm
Rank: 1
等 级:新手上路
帖 子:15
专家分:0
注 册:2006-8-18
收藏
 问题点数:0 回复次数:0 
[求助]如果从数据库中取6张图片,如何进行每行3个的显示?
<!--#include file="conn.asp"-->
<%
Dim vertigo1,vertigo2
set vertigo2=server.CreateObject("adodb.recordset")
vertigo1="select top 6 * from [good_info] where check='yes' order by id desc"
vertigo2.open vertigo1,conn,1,1
IF not vertigo2.eof and not vertigo2.bof then
ist=0
do while not vertigo2.eof
%>
document.write("<td width='200' align='center' ><a href='good_info.asp?id=<%=vertigo2("id")%>' target=_blank><img src='<%=vertigo2("pic")%>' width=50 height=50 border=0 style='border: 1px solid #000000'><br><%=left((vertigo2("id")),6)%></a></td>")
<%
ist=ist+1
if ist>0 and ist mod%3=0 then
response.write("</tr>")
end if
vertigo2.movenext
loop
end if
conn.Close
Set conn=Nothing
%>
这是我学着写的程序,请问各位大哥我哪里不对了?
搜索更多相关主题的帖子: 数据库 每行 
2006-08-18 21:45
快速回复:[求助]如果从数据库中取6张图片,如何进行每行3个的显示?
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.032153 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved