📄 class_menu.asp
字号:
<!--#include file="chkadmin.asp"-->
<!--#include file="conn.asp"-->
<html>
<head>
<meta http-equiv="Content-Language" content="zh-cn">
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<link href="css.css" rel="stylesheet" type="text/css">
<title>学生成绩管理系统</title>
</head>
<body>
<div align="center">
<center>
<table border="1" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#ffffff" width="100%">
<tr>
<td width="100%" background="../Images/admin_table_bg.gif" height="25">
<p align="center"><font color="#FFFFFF"><b>请选择班级所属专业</b></font></td>
</tr>
<tr>
<td width="100%" height="15" bgcolor="#D9E6FF">
<form method="POST" action="class_manage.asp">
<p align="center">
<br>
<select name="proid" tabindex="1">
<%
set fs=server.createobject("adodb.recordset")
fs.open "select * from [pro]",conn,1,1
If fs.RecordCount=0 Then
Response.Write "<option>没有专业</option>"
Else
Do While Not fs.EOF
%>
<option value=<%=fs("id")%>><%=fs("xi")&fs("pro")%></option>
<%
fs.MoveNext
Loop
End If
fs.Close
Set fs=nothing
%>
</select>
<input type="submit" value="查看本专业班级列表" name="B1" tabindex="2"></p>
</form>
</td>
</tr>
</table>
</center>
</div>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -