代码如下:
<!--#include file="conn.asp"-->
<%
if session("username")="" then
response.redirect "relogin.asp"
end if
%>
<html >
<head>
<meta http-equiv="Content-Language" content="zh-cn">
<meta name="GENERATOR" content="Microsoft FrontPage 6.0">
<meta name="ProgId" content="FrontPage.Editor.Document">
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>成绩查询</title>
<link rel="stylesheet" type="text/css" href="css.css">
</head>
<body>
<table border="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="100%" id="AutoNumber1">
<tr>
<td width="100%" height="30" style="border-left-style: solid; border-left-width: 0; border-right-style: solid; border-right-width: 0; border-top-style: solid; border-top-width: 0; border-bottom: 1px solid #000000">
<img border="0" src="images/cxcj.gif"></td>
</tr>
</table>
<%
sql="SELECT
kcid , kcm FROM tbkc where isopen=1 "
set rs=server.createobject("adodb.recordset")
rs.open sql, conn, 1, 1
if rs.eof then
%><table border="0" cellspacing="0" bordercolor="#111111" width="100%">
<tr>
<td width="100%" height="30">
<p align="center"><br><br><font color="#FF0000"><b>现在您还没有相关的成绩!!! </b> </font></td>
</tr>
</table>
<%else
i=1
%>
<center>
<table border="1" cellspacing="1" style="border-collapse: collapse" bordercolor="#799AE1" id="AutoNumber2" cellpadding="0" width="506">
<tr class="trh">
<td height="25" width="10%"
></td>
<td
width="30%" height="25">
<p align="center"><font color="#FFFFFF"><b>课程名称</b></font></td>
<td colspan="3" height="25" width="40%">
<p align="center"><font color="#FFFFFF"><b>选 择</b></font></td>
</tr>
<%
do while not rs.eof
%>
<tr
class="trh1">
<td align="center" height="48" width="10%" bgcolor="#ECF5FF"><%=i%></td>
<td bgcolor="#ECF5FF" width="30%" height="48">
<p align="center"><b><%=rs("kcm")%></b><br></td>
<td bgcolor="#ECF5FF" width="13%" height="48"><center>
<a href="cx_subject.asp?kcid=<%=rs("kcid")%>"><img border="0" id="img1" src="images/k1.gif" alt="考试" ></a></a></td>
<td bgcolor="#ECF5FF" width="13%" height="48">
<p align="center">
<a href="cx_chapter.asp?kcid=<%=rs("kcid")%>"><img border="0" id="img3" src="images/k3.gif" alt="练习" ></a></td>
</tr>
<%
i=i+1
rs.movenext
loop
'response.write rs("kcid")
rs.close
end if
%>
</table>
</body>
</html>
显示就是
1
计算机
考试
练习
2
英语
考试
练习
3 ……………………………………
我不管点哪个“考试”都显示的是计算机的
错误提示是ADODB.Field 错误 '80020009'
BOF 或 EOF 中有一个是“真”,或者当前的记录已被删除,所需的操作要求一个当前的记录。
/cx_subject1.asp,行 0