| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 357 人关注过本帖
标题:循环记录集的问题
取消只看楼主 加入收藏
myou841103
Rank: 2
等 级:论坛游民
帖 子:30
专家分:46
注 册:2009-9-28
结帖率:66.67%
收藏
 问题点数:0 回复次数:0 
循环记录集的问题
https://bbs.bccn.net/viewthread.php?tid=323487&pid=1859626&page=1#pid1859626
谢谢各位兄弟提供意见,改了下发现输出5列不能循环记录集
输出变成
与户主关系 妻          
姓名       b   b   b    b   b
table2
与户主关系 妻        
姓名       b   b   b    b   

代码如下,该怎么改才能循环输出不重复的值?

<table  id=data width="800" border="1">
<%
'' 获取数据数组
data=rs.GetRows()
%>

<%

TotalCount=ubound(data,2)

redim ArrayList(TotalCount,1)     '定义二维数组

for i=0 to TotalCount
ArrayList(i,0)=data(2,1)
ArrayList(i,1)=data(4,1)           这里怎么改成循环????????
next

'你可以将数据记录先放入数组

RowSetup=5    '每行设定的列数
TotalRow=Abs(Int(TotalCount/RowSetup*(-1)))     '计算分行的数量

response.write "<table border=""1"">"

for i=1 to TotalRow
    response.write "<tr><td>与户主关系</td>"
    for j=1 to RowSetup
        if (i-1)*RowSetup+j-1>TotalCount then
            response.write "<td> </td>"
        else
            response.write "<td>"&ArrayList((i-1)*RowSetup+j-1,0)&"</td>"
        end if
    next

    response.write "<tr><td>姓名</td>"
   
    for j=1 to RowSetup
        if (i-1)*RowSetup+j-1>TotalCount then
            response.write "<td> </td>"
        else
            response.write "<td>"&ArrayList((i-1)*RowSetup+j-1,1)&"</td>"
        end if
    next
    response.write "</table>"
    response.write "table2"
    response.write "<table border=""1"">"
next

response.write "</table>"
%>

</table>
搜索更多相关主题的帖子: 记录 
2010-10-21 22:05
快速回复:循环记录集的问题
数据加载中...
 
   



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

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