| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 367 人关注过本帖
标题:[求助]ASP图片调用换行问题
只看楼主 加入收藏
djxzf
Rank: 1
等 级:新手上路
帖 子:2
专家分:0
注 册:2007-3-17
收藏
 问题点数:0 回复次数:2 
[求助]ASP图片调用换行问题

sub ArticleContent(intTitleLen)
dim i,strTemp
i=0
do while not rsArticle.eof
strTemp=""
'strTemp = strTemp & ""
strTemp= strTemp & "<table width=100% border=0 cellspacing=3 cellpadding=0>"
strTemp= strTemp & "<tr>"
strTemp= strTemp & "<td width=30% rowspan=6>"
strTemp= strTemp & "<div align=center><a href=ArticleShow.asp?ArticleID=" & rsArticle("articleid") & ">"
strTemp= strTemp & "<img border=0 src=" & rsArticle("DefaultPicUrl") & " >"
strTemp= strTemp & "</a></div></td>"
strTemp= strTemp & "<td width=12% height=12>产品名称:</td>"
strTemp= strTemp & "<td><a href=ArticleShow.asp?ArticleID=" & rsArticle("articleid") & ">" & rsArticle("Title") & "</a></td>"
strTemp= strTemp & "</tr>"

strTemp= strTemp & "<tr>"
strTemp= strTemp & "<td width=12% height=12>产品规格:</td>"
strTemp= strTemp & "<td>" & rsArticle("Spec") & "</td>"
strTemp= strTemp & "</tr>"

strTemp= strTemp & "<tr>"
strTemp= strTemp & "<td height=12>产品类别:</td>"
strTemp= strTemp & "<td><a href='Product.asp?BigClassName=" & rsArticle("BigClassName") & "'>" & rsArticle("BigClassName") & "</a> → "
strTemp= strTemp & "<a href='Product.asp?BigClassName=" & rsArticle("BigClassName") & "&SmallClassName=" & rsArticle("SmallClassName") & "'>" & rsArticle("SmallClassName") & ""
strTemp= strTemp & "</a></td>"
strTemp= strTemp & "</tr>"

' strTemp= strTemp & "<tr>"
' strTemp= strTemp & "<td height=18>产品编号:</td>"
' strTemp= strTemp & "<td>" & rsArticle("Product_Id") & "</td>"
' strTemp= strTemp & "</tr>"

strTemp= strTemp & "<tr>"
strTemp= strTemp & "<td height=12>产品信息:</td>"
strTemp= strTemp & "<td><a href=ArticleShow.asp?ArticleID=" & rsArticle("articleid") & "><img src=Img/arrow_7.gif border=0></a></td>"
strTemp= strTemp & "</tr>"

strTemp= strTemp & "<tr>"
strTemp= strTemp & "<td colspan=2>"
strTemp= strTemp & "<table width=100% border=0 cellpadding=0 cellspacing=0>"
strTemp= strTemp & "<tr>"
strTemp= strTemp & "<td width=50% height=12>"
strTemp= strTemp & "<div align=center></div></td>"
strTemp= strTemp & "<td width=50% height=12>"

strTemp= strTemp & "</a></div></td>"
strTemp= strTemp & "</tr>"
strTemp= strTemp & "</table>"
strTemp= strTemp & "</td>"
strTemp= strTemp & "</tr>"

strTemp= strTemp & "<tr>"

strTemp= strTemp & "</tr>"
strTemp= strTemp & "</table>"
response.write strTemp
rsArticle.movenext
i=i+1
if i>=MaxPerPage then exit do
loop
end sub


怎么样使他调用三个自动换行 每一行显示三个图片

[此贴子已经被作者于2007-3-17 10:08:01编辑过]

搜索更多相关主题的帖子: ASP 
2007-03-17 09:59
djxzf
Rank: 1
等 级:新手上路
帖 子:2
专家分:0
注 册:2007-3-17
收藏
得分:0 
请各位高手指点一下,谢谢啦
2007-03-17 11:08
做人很低调
Rank: 5Rank: 5
等 级:贵宾
威 望:18
帖 子:1268
专家分:0
注 册:2006-8-2
收藏
得分:0 

循环TD
判断换行


<%
Dim i,Rs
i = 0
Set Rs = Conn.ExeCute(sql)
Do While Not Rs.Eof
i = i+1
Response.Write("<td>"&Rs("Pic")&"</td>")
If i Mod 3 = 0 Then Response.Write("</tr><tr>")
Rs.MoveNext
Loop
Rs.Close
Set Rs = Nothing
%>


其实我很低调,只是你不知道...
2007-03-17 11:10
快速回复:[求助]ASP图片调用换行问题
数据加载中...
 
   



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

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