博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
ASP多行多列显示代码- 5行
阅读量:4940 次
发布时间:2019-06-11

本文共 515 字,大约阅读时间需要 1 分钟。

<table width="98%" border="0" align="center">

        <tr>
<%
 Set rs= Server.CreateObject("ADODB.Recordset")
 rs.open "s elect * from links where link_type=1 order by id asc",conn,1,1
 tempnum2=1
 do while not rs.eof
%>
<td height="20"><a href="<%=rs("link_url")%>" target=_blank><%=rs("link_name")%></a></td>
<%
 if (tempnum2 mod 5)=0 then response.write "</tr>" '五列显示mod 5
 tempnum2=tempnum2+1
 rs.movenext
 loop
%>
</tr>
<%
 rs.close
 set rs=nothing
%>
</table>

转载于:https://www.cnblogs.com/leevane/archive/2008/10/29/1322128.html

你可能感兴趣的文章
day14 多态与抽象
查看>>
Eclipse CDT 出现 launch failed Binary not found
查看>>
apache jmeter
查看>>
Linux 基本命令
查看>>
RedHat7.0 网络源的配置
查看>>
(Mark)JS中关于闭包
查看>>
流程结构图
查看>>
ios端web app在键盘升起后缩小view防止界面仍可上下滑动
查看>>
从service弹出系统级自定义提示框,可在任意页面弹出
查看>>
Bootstrap简单介绍
查看>>
iOS Touch ID 身份认证
查看>>
springboot 注解笔记
查看>>
图解HTTP---------------------------------------4
查看>>
hibernate实体类配置文件问题(字段使用默认值)
查看>>
rsync+inotify脚本
查看>>
LeetCode 860.柠檬水找零(C++)
查看>>
文件上传
查看>>
(Problem 92)Square digit chains
查看>>
HDU 2612 Find a way BFS,防止超时是关键
查看>>
0809
查看>>