标题:怎样将下面的循环成五列
只看楼主
dou521
Rank: 1
等 级:新手上路
帖 子:42
专家分:0
注 册:2009-3-19
结帖率:91.67%
 问题点数:0 回复次数:1 
怎样将下面的循环成五列
现在循环出来的重复,还是行,很乱,没有积分了,请高手指点

sub ArticleContent(intTitleLen)
    dim i,strTemp
           i=1
              strTemp=""  
              strTemp= strTemp & "<table width=100% border=0 cellspacing=0 cellpadding=0>"
              strTemp= strTemp & "<tr>"
    do while not rsArticle.eof
    strTemp= strTemp & "<td>"
              strTemp= strTemp & "<a href=ProductShow.asp?ArticleID=" & rsArticle("articleid") & ">"
    fileExt=lcase(getFileExtName(rsArticle("DefaultPicUrl")))
    strTemp= strTemp & "</td></tr>"
              strTemp= strTemp & "<tr><td><a href=ArticleShow.asp?ArticleID=" & rsArticle("articleid") & ">" & rsArticle("Title") & "</a>"
               strTemp= strTemp & "</td>"
                    if i mod 5= 0 then
          strTemp= strTemp & "</tr>"
          end if
                    rsArticle.movenext
                    i=i+1
                    strTemp= strTemp & "</table>"
  response.write strTemp
  if i>=15 then exit do
 loop
end sub

[ 本帖最后由 dou521 于 2010-3-3 19:47 编辑 ]
搜索更多相关主题的帖子: border 
2010-03-03 12:46
icecool
Rank: 9Rank: 9Rank: 9
等 级:贵宾
威 望:20
帖 子:1214
专家分:1366
注 册:2005-3-14
得分:0 
看一下下面的代码自已体会:

<table width="12%" height="102" border="1" cellpadding="0" cellspacing="0">
<tr>

<%
i=0
do while not i>=20
 %>


<td width=25%><center><%=i%></center></td>
<% i=i+1 %>
<%if i mod 3=0 then %>
    </tr>
<% end if %>
 
<%
loop  
%>
</table>

http://toorup.3v.do
loading...
2010-03-04 21:05



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-298470-1-1.html




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

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