📄 sj.asp
字号:
<html>
<head>
<title>无标题文档</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
</head>
<body bgcolor="#FFFFFF" text="#000000">
<table width="90%" border="0" align="center" cellspacing="0" cellpadding="0">
<tr>
<td height="25" bgcolor="#CCCCCC">
<div align="center"><b>按分类查看成绩</b></div>
</td>
</tr>
</table>
<p> </p>
<table width="50%" border="0" align="center">
<!-- #include file="conn.asp" -->
<%
set rs=server.createobject("adodb.recordset")
sql="select * from kstype order by id desc"
rs.open sql,conn,1,1
if not rs.eof then
do while not rs.eof
%>
<tr bgcolor="#D8EDFE">
<td height="25"><a href="sj1.asp?id=<%=rs("id")%>"><%=trim(rs("kstype"))%></a>(点击分类名查看学生成绩)</td>
</tr>
<%rs.movenext
loop
end if
rs.close
set rs=nothing
conn.close
set conn=nothing
%>
</table>
<p> </p>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -