?? all.asp
字號(hào):
<!--#include file="conn.asp"-->
<%
if session("user")="" then
response.write "您無(wú)此權(quán)限"
response.end
end if
'------------------------------------------------------------------------------------
'該程序由杭州新世紀(jì)經(jīng)貿(mào)專修學(xué)院2001計(jì)算機(jī)信息管理系應(yīng)田豐開(kāi)發(fā)
'本程序按浙江省學(xué)歷文憑考試相關(guān)流程編寫(xiě),無(wú)任何抄襲代碼和盜版之嫌,大家可下載隨意修改
'苦兒聲明:
'本程序是老苦自己辛苦寫(xiě)成的,希望大家能給個(gè)面子保留著作權(quán)信息,:)
'這個(gè)是第一個(gè)版本,有些地方?jīng)]有考慮到,請(qǐng)大家在試用后給些意見(jiàn),我好繼續(xù)編寫(xiě)改進(jìn)版
'苦兒QQ:3431788 7551860
'MSN:kuer_cn@msn.com
'Email:simonying@163.com
'電話:0571-63413694
'移動(dòng)電話:13083973989
'------------------------------------------------------------------------------------
%>
<html>
<head>
<meta http-equiv="Content-Language" content="zh-cn">
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<meta name="GENERATOR" content="Microsoft FrontPage 4.0">
<meta name="ProgId" content="FrontPage.Editor.Document">
<title>統(tǒng)考成績(jī)分析</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div align="center">
<center>
<table border="0" width="400" cellspacing="0" cellpadding="0">
<tr>
<td width="100%">及格率分析</td>
</tr>
<tr>
<td width="100%">全校及格率(按統(tǒng)考考次分)</td>
</tr>
</center>
<tr>
<td width="100%">
<form method="POST" action="all_1.asp">
<table border="1" width="500" cellspacing="0" cellpadding="5" bordercolorlight="#000000" bordercolordark="#FFFFFF">
<tr>
<td width="33%">
<p align="right">
<%set rs=createobject("adodb.recordset")
sql="select * from testno"
rs.open sql,conn,1,1
%>
<select size="1" name="testno">
<%do while not rs.eof%>
<option value="<%=rs("testno")%>"><%=rs("testno")%></option>
<%rs.movenext%>
<%loop%>
<%rs.close%>
</select></td>
<center>
<td width="33%">
<%set rs1=server.createobject("adodb.recordset")
sql1="select * from subject"
rs1.open sql1,conn,1,1
%>
<select size="1" name="subject">
<%do while not rs1.eof%>
<option value="<%=rs1("subject")%>"><%=rs1("subject")%></option>
<%rs1.movenext%>
<%loop%>
<%rs1.close%>
</select></td>
<td width="34%">
<%set rs2=server.createobject("adodb.recordset")
sql2="select * from class"
rs2.open sql2,conn,1,1
%>
<select size="1" name="user_class">
<option value="all">全部</option> <%do while not rs2.eof%>
<option value="<%=rs2("stclass")%>"><%=rs2("stclass")%></option>
<%rs2.movenext%>
<%loop%>
<%rs2.close%>
</select></td>
</tr>
<tr>
<td width="100%" colspan="3" align="right">
<input type="submit" value="提交" name="B1"></td>
</tr>
</table>
</form>
<p> </center></td>
</tr>
</table>
</div>
</body>
</html>
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -