ASP分段读取数据库代码

作者:gnbbs 来源:经典论坛 时间:2009-10-12 12:28:00 

ASP如何分两段读取数据库?中间插入广告。代码如下:

<!--#include file="conn.asp"-->
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>aspxhome.com</title>
<meta name="keywords" content="" />
<meta name="description" content="" />
<link href="" rel="stylesheet" type="text/css" />
<style type="text/css">
<!--
#web {margin-left:auto; margin-right:auto; width:600px; height:auto; text-align:left; margin:0 auto}
.A {float:left; width:100%; height:auto; border:1px solid #CCC; background:#F8F8F8;}
.A ul {float:left; list-style-type:none;}
.A li {margin-top:8px; margin-bottom:8px;}
.B {float:left; width:100%; height:100px;}
-->
</style>
</head>
<body>
<div id="web">
<div class="A">
<ul>
<%
i=0
set rs=server.createobject("adodb.recordset") 
sql ="select * from 表 order by 日期 Desc"
rs.open sql,conn,1,1
if rs.eof then
%>
没有文章
<%
else
do while not rs.eof
%>
<li><a href="<%=rs("路径")%>" target="_blank"><%=rs("标题")%></a></li>
<%
i=i+1
if i>=8 then exit do     '显示条数
rs.movenext
loop
end if
rs.close
%>
</ul>
</div>
<!--广告-->
<div class="B"><br/>广告位置</div>
<div class="A">
<ul>
<%
i=0
set rs=server.createobject("adodb.recordset") 
sql ="select * from 表 where 自动排列字段 not in (select top 10 自动排列字段 from 表 order by 日期 Desc) order by 日期 Desc"
rs.open sql,conn,1,1
if rs.eof then
%>
没有文章
<%
else
do while not rs.eof
%>
<li><a href="<%=rs("路径")%>" target="_blank"><%=rs("标题")%></a></li>
<%
i=i+1
if i>=8 then exit do     '显示条数
rs.movenext
loop
end if
rs.close
%>
</ul>
</div>
</div>
</body>
</html>

标签:数据库,asp,sql
0
投稿

猜你喜欢

  • asp如何使用SMTP Service发送邮件?

    2010-06-05 12:43:00
  • Python将内容进行base64编码与解码实现

    2021-02-19 17:47:42
  • Python虚拟环境的创建和包下载过程分析

    2023-01-02 12:46:10
  • thinkPHP中配置的读取与C方法详解

    2023-11-14 17:12:35
  • Python+selenium 获取浏览器窗口坐标、句柄的方法

    2023-03-21 16:21:52
  • 浅谈Python 中的复数问题

    2023-04-22 17:02:11
  • python实现读取excel文件中所有sheet操作示例

    2022-04-25 15:00:36
  • 纯JS单页面赛车游戏制作代码分享

    2024-02-23 14:10:17
  • 一文秒懂python读写csv xml json文件各种骚操作

    2023-08-03 23:50:42
  • python使用jenkins发送企业微信通知的实现

    2022-06-06 19:40:16
  • php完全过滤HTML,JS,CSS等标签

    2023-10-09 08:07:34
  • 使用javaScript动态加载Js文件和Css文件

    2024-04-19 10:16:27
  • pandas 空数据处理方法详解

    2022-08-18 00:29:01
  • 一种简单的ID生成策略: Mysql表生成全局唯一ID的实现

    2024-01-25 09:55:41
  • vue中keep-alive组件的入门使用教程

    2023-07-02 16:38:51
  • vue使用element-resize-detector监听元素宽度变化方式

    2024-05-29 22:29:26
  • ORACLE时间函数(SYSDATE)深入理解

    2024-01-18 05:15:14
  • Python采集大学教务系统成绩单实战示例

    2021-05-13 23:14:43
  • python脚本打包后无法运行exe文件的解决方案

    2021-02-25 23:25:35
  • 利用Python实现热力图的绘制

    2021-11-07 12:02:47
  • asp之家 网络编程 m.aspxhome.com