| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 442 人关注过本帖
标题:输出记录
取消只看楼主 加入收藏
lyf
Rank: 1
等 级:新手上路
帖 子:238
专家分:0
注 册:2005-11-17
收藏
 问题点数:0 回复次数:2 
输出记录
好容易才上来。刚才的网络不好。

我想问一个问题,如果我定义 ipagesize=3,也就是在表中每次输出3条,并且表的最上面带有标题,我想同时输出此标题,每次三个记录输出。这是我写的语句,不行,请问该怎么写?

<%if i/ipagesize=0 then%>
搜索更多相关主题的帖子: 输出 记录 
2005-11-25 12:43
lyf
Rank: 1
等 级:新手上路
帖 子:238
专家分:0
注 册:2005-11-17
收藏
得分:0 

,最上面是标题栏(带颜色的),但是它是每一条就有一个标题栏输出,现在我的目的是要输出三条后在加一标题栏在接着输出。

我的语句是

dim iPageSize '数据页面大小
iPageSize = 3
<table style="border-bottom-style: solid; border-bottom-width: 1" border="0" cellpadding="0" cellspacing="0" width="100%" id="Table18">
<% do while not rsFile.EOF%>
<%for i=1 to rsFile.RecordCount%>

<tr>
<td bgcolor="#336699" style="border-bottom-style: solid; border-bottom-width: 1" colspan="4" rowspan="2"> <p align="center" style="margin-top: 3"> <font class="wordblack" color="#FFFFFF"> 归    档    文     件     目      录</font></td>
<td bgcolor="#336699" style="border-bottom-style: solid; border-bottom-width: 1" height="39"> <p align="center" style="margin-top: 3"> <font class="wordblack" color="#FFFFFF">年 度</font></td>
<td bgcolor="#336699" style="border-bottom-style: solid; border-bottom-width: 1"> <p align="center" style="margin-top: 3"> <p align="left" style="margin-top: 3"><font class="wordblack" color="#FFFFFF"> 期 限</font></td>
<td bgcolor="#336699" style="border-bottom-style: solid; border-bottom-width: 1"> <p align="center" style="margin-top: 3"> <font class="wordblack" color="#FFFFFF">机 构</font></td>
</tr>

<tr>
<td style="border-bottom-style: solid; border-bottom-width: 1" width="10%" height="20" align="middle"> <p align="center" style="margin-top: 3"><font class="wordblack" color="#FFFFFF"></font> <%=rsFile.fields("年度号")%></td>
<td style="border-bottom-style: solid; border-bottom-width: 1" width="8%"> <p align="center" style="margin-top: 3"> <font class="wordblack" color="#FFFFFF"></font>
<%if rsFile.fields("案卷保存类型")="1" then response.Write " 永久" %>
<%if rsFile.fields("案卷保存类型")="2" then response.Write " 长期" %>
<%if rsFile.fields("案卷保存类型")="3" then response.Write " 短期" %>

</td>

</tr>


<tr>
<td bgcolor="#336699" style="border-bottom-style: solid; border-bottom-width: 1" width="11%"> <p align="center" style="margin-top: 3"> <font class="wordblack" color="#FFFFFF"> 件 号</font></td>
<td bgcolor="#336699" style="border-bottom-style: solid; border-bottom-width: 1" width="15%">
<p align="center" style="margin-top: 3"><font class="wordblack" color="#FFFFFF"> 责 任 者</font></td>
<td bgcolor="#336699" style="border-bottom-style: solid; border-bottom-width: 1" width="21%"><font color="#FFFFFF">   </font><font class="wordblack" color="#FFFFFF">文   号</font></td>
<td bgcolor="#336699" width="25%" style="border-bottom-style: solid; border-bottom-width: 1"> <p align="center" style="margin-top: 3"><font class="wordblack" color="#FFFFFF">     题    目</font></td>
<td bgcolor="#336699" style="border-bottom-style: solid; border-bottom-width: 1" > <p align="center" style="margin-top: 3"><font class="wordblack" color="#FFFFFF"> 日 期</font></td>
<td bgcolor="#336699" style="border-bottom-style: solid; border-bottom-width: 1"> <p align="center" style="margin-top: 3"> <font class="wordblack" color="#FFFFFF">页 数</font></td>
<td bgcolor="#336699" style="border-bottom-style: solid; border-bottom-width: 1"> <p align="center" style="margin-top: 3"> <font class="wordblack" color="#FFFFFF">备  注</font></td>
</tr>

<tr>
<td style="border-bottom-style: solid; border-bottom-width: 1" width="11%" align="middle">
<%=i%>
</td>
<td style="border-bottom-style: solid; border-bottom-width: 1" width="15%" align="middle"><%=rsFile.Fields("发起部门")%></td>
<td style="border-bottom-style: solid; border-bottom-width: 1" width="21%" align="middle">
<%=rsFile.Fields("公文文号")%></td>
<td style="border-bottom-style: solid; border-bottom-width: 1" width="25%" align="middle"><%if isprint=true then%>
<a href="#" onClick="seeDocDetail('<%=rsFile.Fields("公文ID")%>')" ><%=rsFile.Fields("公文标题")%></a>
<%else%>
<a href="#" onClick="viewFile('<%=rsFile.Fields("公文ID")%>')" ><%=rsFile.Fields("公文标题")%></a>
<%end if%>

</td>
<td style="border-bottom-style: solid; border-bottom-width: 1" align="middle">
<%=month(rsFile.Fields("归档时间"))&"月"&day(rsFile.Fields("归档时间"))&"日"%>

</td>
<td style="border-bottom-style: solid; border-bottom-width: 1" ></td>
<td style="border-bottom-style: solid; border-bottom-width: 1"></td>

</tr>
<%

rsFile.MoveNext
next
loop
%>

</table>
烦请各未给我看看。


2005-11-25 13:23
lyf
Rank: 1
等 级:新手上路
帖 子:238
专家分:0
注 册:2005-11-17
收藏
得分:0 
不行呀,是不是可以用一个条件判断,比如,&lt;%if i/ipagesize=0 then%&gt;

2005-11-25 13:49
快速回复:输出记录
数据加载中...
 
   



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

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