Y
yyjqtww
Unregistered / Unconfirmed
GUEST, unregistred user!
<%
set dbconnection=Server.CREATEOBJECT("ADODB.CONNECTION"
DBPath = Server.MapPath("zz.mdb"
dbconnection.Open "driver={Microsoft Access Driver (*.mdb)};dbq="
&
DBPath
Set rs = Server.CreateObject("ADODB.Recordset"
rs.Open "zz", dbconnection, adOpenDynamic, 3
%>
<html>
<head>
<title>前台如何显示数据库中的数据</title>
<meta http-equiv="Content-Type"
content="text/html;
charset=gb2312">
</head>
<body>
<table width="100%"
height="40"
border="0"
align="center"
cellpadding="0"
cellspacing="1"
bgcolor="#FF9900">
<tr align="center"
bgcolor="#6D9D4A">
<td width="25%"><font color="#FFFFFF">发布时间</font></td>
<td width="25%"><font color="#FFFFFF">用人单位</font></td>
<td width="25%"><font color="#FFFFFF">职位</font></td>
<td width="25%"><font color="#FFFFFF">工作地点</font></td>
</tr>
<%do
while not rs.eof %>
<tr align="center"
bgcolor="#EBEBEB">
<td><font size="2"><%=rs("fbrq"%></font></td>
<td><font size="2"><%=rs("yrdw"%></font></td>
<td><font size="2"><%=rs("zw"%></font></td>
<td><font size="2"><%=rs("gzdd"%></font></td>
</tr>
<%
rs.movenext
LOOP
%>
</table>
</body>
</html>
这样以后,DB中的所有记录都显示出来了。可是我只想显示例如前五条怎么办呢,因为没有SQL语句,所以用了rs.pagesize=5来设定,可是也不行。请大家帮帮忙!
谢谢!
set dbconnection=Server.CREATEOBJECT("ADODB.CONNECTION"
DBPath = Server.MapPath("zz.mdb"
dbconnection.Open "driver={Microsoft Access Driver (*.mdb)};dbq="
&
DBPath
Set rs = Server.CreateObject("ADODB.Recordset"
rs.Open "zz", dbconnection, adOpenDynamic, 3
%>
<html>
<head>
<title>前台如何显示数据库中的数据</title>
<meta http-equiv="Content-Type"
content="text/html;
charset=gb2312">
</head>
<body>
<table width="100%"
height="40"
border="0"
align="center"
cellpadding="0"
cellspacing="1"
bgcolor="#FF9900">
<tr align="center"
bgcolor="#6D9D4A">
<td width="25%"><font color="#FFFFFF">发布时间</font></td>
<td width="25%"><font color="#FFFFFF">用人单位</font></td>
<td width="25%"><font color="#FFFFFF">职位</font></td>
<td width="25%"><font color="#FFFFFF">工作地点</font></td>
</tr>
<%do
while not rs.eof %>
<tr align="center"
bgcolor="#EBEBEB">
<td><font size="2"><%=rs("fbrq"%></font></td>
<td><font size="2"><%=rs("yrdw"%></font></td>
<td><font size="2"><%=rs("zw"%></font></td>
<td><font size="2"><%=rs("gzdd"%></font></td>
</tr>
<%
rs.movenext
LOOP
%>
</table>
</body>
</html>
这样以后,DB中的所有记录都显示出来了。可是我只想显示例如前五条怎么办呢,因为没有SQL语句,所以用了rs.pagesize=5来设定,可是也不行。请大家帮帮忙!
谢谢!