手机
当前位置:查字典教程网 >编程开发 >ASP教程 >从数据库中读取记录横向排列
从数据库中读取记录横向排列
摘要:=MaxPerPagethenexitdors.movenextloop%>记录排列如下:12345如果我想把记录排列改成12345那么以上...

<tablewidth="100%"border="0"cellpadding="0"cellspacing="0">

<%dowhilenotrs.eof%>

<tr>

<tdheight="80"><imgsrc="<%=rs("图片")%>"width="160"height="80"></td>

</tr>

<%i=i+1

ifi>=MaxPerPagethenexitdo

rs.movenext

loop

%>

</table>

记录排列如下:

1

2

3

4

5

如果我想把记录排列改成

123

45

那么以上代码该怎么改,请高手帮忙一下

复制代码 代码如下:

<tablewidth="100%"border="0"cellpadding="0"cellspacing="0">

<%i=0

dowhilenotrs.eof

ifimod3=0then%>

<tr>

<%endif%>

<tdheight="80"><imgsrc="<%=rs("图片")%>"width="160"height="80"></td>

<%

if(i+1)mod3=0then

%>

</tr>

<%endif%>

<%

i=i+1

ifi>=MaxPerPagethenexitdo

rs.movenext

loop

%>

</table>

【从数据库中读取记录横向排列】相关文章:

asp中用数据库生成不重复的流水号

asp 随机读取N条记录sql语句

ASP数据库连接方式大全

如何从数据库中随机取出10条记录的方法

Ajax+ASP和Flash+ASP数据读取取方法有些相似的实现方法

ASP与数据库,有用的代码(转贴,摘贴)

ASP获取数据库表名、库名、字段名的方法

ASP中常用的变量命名规则

替换数据库内容

九种防MDB数据库被下载的方法小结

精品推荐
分类导航