| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 669 人关注过本帖
标题:ASP数据横排出错大家帮我看看!!!
只看楼主 加入收藏
gaosuo
Rank: 1
等 级:新手上路
帖 子:3
专家分:0
注 册:2008-4-18
收藏
 问题点数:0 回复次数:5 
ASP数据横排出错大家帮我看看!!!
ASP数据横排出错大家帮我看看!!!
<body>
<div align="center">
<table border="1" width="800" id="table508" >
<tr>
<td style="font-size: 13px">
<div align="center">
<table border="0" width="800" id="table509" >
<tr>
<td width="9%" style="font-size: 13px">
<img border="0" src="images/arrow_3.gif" width="15" height="14"></td>
<td width="89%" style="font-size: 13px">
<img border="0" src="images/tjgg.jpg" width="150" height="22"></td>
</tr>
<tr>
<td colspan="2" style="font-size: 13px">
'以下是我要横排的内容:是个表格
<%
n=1
set rs=server.createobject("adodb.recordset")
sql="SELECT top 5 * from (SELECT * from gg where du='推荐' ORDER BY ID DESC)"
rs.open sql,conn,1,1
if rs.eof and rs.bof then
response.write ""
else
while not rs.eof
%>
<table border="0" width="230" id="table510" >
<tr>
<td rowspan="3" width="74" style="font-size: 13px">
<img border="0" src="<%=rs("tupian")%>" width="72" height="110"></td>
<td width="39" style="font-size: 13px">编号:</td>
<td style="font-size: 13px"><%=rs("id")%></td>
</tr>
<tr>
<td width="39" style="font-size: 13px">规格:</td>
<td style="font-size: 13px"><%=rs("guige")%></td>
</tr>
<tr>
<td width="39" style="font-size: 13px">信息:</td>
<td style="font-size: 13px">
<p align="center">
<a href="news.asp" style="text-decoration: none; color: #333">
<img border="0" src="<%=rs("xinxi")%>" width="75" height="25"></a>
</tr><%If n mod 3=0 Then%>
</table>
<%
end if
n=n+1
rs.movenext
wend
rs.close
end if
Set rts=Nothing
%>
'以上是我要横排的内容:是个表格
</td>
</tr>
</table>
</div>
</td>
</tr>
</table>
</div>
搜索更多相关主题的帖子: ASP 数据 
2008-04-27 20:21
makebest
Rank: 8Rank: 8
等 级:蝙蝠侠
威 望:3
帖 子:658
专家分:962
注 册:2005-3-17
收藏
得分:0 
对的又是怎样的呢
2008-04-27 20:39
hxfly
Rank: 5Rank: 5
等 级:贵宾
威 望:17
帖 子:5810
专家分:118
注 册:2005-4-7
收藏
得分:0 
TABLE和TABLE不能横排,....

2008-04-28 00:04
hxfly
Rank: 5Rank: 5
等 级:贵宾
威 望:17
帖 子:5810
专家分:118
注 册:2005-4-7
收藏
得分:0 
<body>
<div align="center">
<table border="1" width="800" id="table508" >
<tr>
<td style="font-size: 13px">
<div align="center">
<table border="0" width="800" id="table509" >
<tr>
<td width="9%" style="font-size: 13px">
<img border="0" src="images/arrow_3.gif" width="15" height="14"></td>
<td width="89%" style="font-size: 13px">
<img border="0" src="images/tjgg.jpg" width="150" height="22"></td>
</tr>
<tr>
<td colspan="2" style="font-size: 13px">
'以下是我要横排的内容:是个表格
<%
n=1
set rs=server.createobject("adodb.recordset")
sql="SELECT top 5 * from (SELECT * from gg where du='推荐' ORDER BY ID DESC)"
rs.open sql,conn,1,1
if rs.eof and rs.bof then
response.write ""
else
%>
<table border="0" width="230" id="table510" >

<%
while not rs.eof
%>
<tr>
<td rowspan="3" width="74" style="font-size: 13px">
<img border="0" src="<%=rs("tupian")%>" width="72" height="110"></td>
<td width="39" style="font-size: 13px">编号:</td>
<td style="font-size: 13px"><%=rs("id")%></td>
</tr>
<tr>
<td width="39" style="font-size: 13px">规格:</td>
<td style="font-size: 13px"><%=rs("guige")%></td>
</tr>
<tr>
<td width="39" style="font-size: 13px">信息:</td>
<td style="font-size: 13px">
<p align="center">
<a href="news.asp" style="text-decoration: none; color: #333">
<img border="0" src="<%=rs("xinxi")%>" width="75" height="25"></a>
</tr>
<%
end if
n=n+1
rs.movenext
wend
rs.close
%>
</table>
<%
end if
Set rts=Nothing
%>
'以上是我要横排的内容:是个表格
</td>
</tr>
</table>
</div>
</td>
</tr>
</table>
</div>

[[it] 本帖最后由 hxfly 于 2008-4-28 00:12 编辑 [/it]]

2008-04-28 00:05
hxfly
Rank: 5Rank: 5
等 级:贵宾
威 望:17
帖 子:5810
专家分:118
注 册:2005-4-7
收藏
得分:0 
试试上面的代码....

2008-04-28 00:06
gaosuo
Rank: 1
等 级:新手上路
帖 子:3
专家分:0
注 册:2008-4-18
收藏
得分:0 
好的!!!我先试一下!谢你了!!
2008-04-28 10:13
快速回复:ASP数据横排出错大家帮我看看!!!
数据加载中...
 
   



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

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