- <%@ page language = "java" contentType = "text/html;charset=gb2312"%>
- <%@ page import = "java.sql.*, java.io.*" %>
- <jsp:useBean id="subject" scope="page" class="wsxk.ConDB"/>
- <%
- String titlelist[];
- titlelist = new String[99999];
- String strSQL = "select stuid ,stuname from student ";
- ResultSet rs = subject.executeQuery(strSQL);
- int length = 0;
- while(rs.next())
- {
- String id = rs.getString("stuid");
- String title = rs.getString("stuname").trim();
- titlelist[length] = title;
- length++;
- }
- %>
- <%
- String titlelist1[];
- titlelist1 = new String[99999];
- String strSQL1 = "select teaid ,teaname from teacher ";
- ResultSet rs1 = subject.executeQuery(strSQL1);
- int length1 = 0;
- while(rs1.next())
- {
- String id1 = rs1.getString("teaid");
- String title1 = rs1.getString("teaname").trim();
- titlelist1[length1] = title1;
- length1++;
- }
- %>
- <%
- String titlelist2[];
- titlelist2 = new String[99999];
- String strSQL2 = "select couid ,couname from course ";
- ResultSet rs2 = subject.executeQuery(strSQL2);
- int length2 = 0;
- while(rs2.next())
- {
- String id2 = rs2.getString("couid");
- String title2 = rs2.getString("couname").trim();
- titlelist2[length2] = title2;
- length2++;
- }
- %>
- <html>
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=gb2312">
- <link href="_notes/aaa.css" rel="stylesheet" type="text/css">
- <style type="text/css">
- <!--
- @import url("_notes/ccc");
- body,td,th {
- color: #FFFFFF;
- font-weight: bold;
- font-size: 12px;
- }
- a:link {
- color: #FFFFFF;
- }
- a:visited {
- color: #FFFFFF;
- }
- -->
- </style>
- </HEAD>
- <BODY BGCOLOR=#0D85A6 BACKGROUND="images/bg.gif" >
- <br>
- <br>
- <TABLE WIDTH=750 height="494" BORDER=0 align="center" CELLPADDING=0 CELLSPACING=0>
- <TR>
- <TD> <IMG SRC="images/spacer.gif" WIDTH=231 HEIGHT=1></TD>
- <TD> <IMG SRC="images/spacer.gif" WIDTH=4 HEIGHT=1></TD>
- <TD> <IMG SRC="images/spacer.gif" WIDTH=75 HEIGHT=1></TD>
- <TD> <IMG SRC="images/spacer.gif" WIDTH=110 HEIGHT=1></TD>
- <TD> <IMG SRC="images/spacer.gif" WIDTH=110 HEIGHT=1></TD>
- <TD> <IMG SRC="images/spacer.gif" WIDTH=110 HEIGHT=1></TD>
- <TD> <IMG SRC="images/spacer.gif" WIDTH=105 HEIGHT=1></TD>
- <TD> <IMG SRC="images/spacer.gif" WIDTH=5 HEIGHT=1></TD>
- </TR>
- <TR>
- <TD COLSPAN=4> <IMG SRC="images/temp_01.jpg" WIDTH=420 HEIGHT=15></TD>
- <TD COLSPAN=4> <IMG SRC="images/temp_02.jpg" WIDTH=330 HEIGHT=15></TD>
- </TR>
- <TR>
- <TD COLSPAN=8> <IMG SRC="images/temp_03.jpg" WIDTH=750 HEIGHT=5></TD>
- </TR>
- <TR>
- <TD>
- <table width="231" border="0" cellspacing="0" cellpadding="0" height="226" background="images/left_top.jpg">
- <tr>
- <td width="231" valign="bottom">
- <div align="center">
- <p><br>
- </p>
- <p>【成绩录入】</p>
- <p align="center"> 在这里您可以对学<br>
- 生的成绩进行录入<br>
- <br>
- <br>
- </p>
- <table width="200" border="1">
- <tr>
- <td><div align="center"><a href="adminteacher.jsp">【教师<strong>管理</strong>】</a></div></td>
- </tr>
- <tr>
- <td><div align="center"><a href="admincourse.jsp">【课程<strong>管理</strong>】</a></div></td>
- </tr>
- </table>
- <p> <strong><font color="#2DFFFF" size="5"> </font></strong></p>
- </div> </td>
- </tr>
- </table>
- </TD>
- <TD ROWSPAN=2> <IMG SRC="images/temp_05.jpg" WIDTH=4 HEIGHT=455></TD>
- <TD COLSPAN=5 ROWSPAN=2>
- <table width="510" border="0" cellspacing="0" cellpadding="0" height="455" background="images/main_bg.jpg">
- <tr>
- <td width="510">
- <table width="510" border="0" cellspacing="0" cellpadding="0" height="455">
- <tr>
- <td width="510" height="78">
- <div align="center"><img src="images/blank_banner.gif" width="468" height="60"></div>
- </td>
- </tr>
- <tr>
- <td valign="top"> <div align="left"><a href="index1.htm">首页</a>><a href="index3.jsp">后台管理</a>>成绩录入<br>
- <br>
- <br>
- <br>
- <table width="500" border="1" bordercolor="#006666">
- <tr>
- <td><div align="center">学生成绩录入</div> <div align="center"></div></td>
- </tr>
- <tr>
- <td height="248"><div align="center">
- <form name="form1" method="post" action="adminscore2.jsp">
- <table width="253" border="0" bordercolor="#006666">
- <tr bordercolor="#006666">
- <td width="67" height="28" background="images/bg.gif" class="bbb">
- <div align="right">学生姓名</div></td>
- <td colspan="2" background="images/bg.gif">
- <div align="left">
- <select name="select" id="select">
- <option value="0" selected>请选择学生</option>
- <% for (int i = 0; i < length; i++)
- out.print("<option>" + titlelist[i].trim() + "</option>");
- %>
- </select>
- </div></td>
- </tr>
- <tr bordercolor="#006666">
- <td height="28" background="images/bg.gif" class="bbb">
- <div align="right">教师姓名</div></td>
- <td colspan="2" background="images/bg.gif">
- <div align="left">
- <select name="select2" id="select2">
- <option selected>请选择教师</option>
- <% for (int i = 0; i < length1; i++)
- out.print("<option>" + titlelist1[i].trim() + "</option>");
- %>
- </select>
- </div></td>
- </tr>
- <tr>
- <td height="28" background="images/bg.gif" class="bbb">
- <div align="right">课程名称</div></td>
- <td colspan="2" bordercolor="#006666" background="images/bg.gif">
- <div align="left">
- <select name="select3" id="select3">
- <option selected>请选择课程</option><% for (int i = 0; i < length2; i++)
- out.print("<option>" + titlelist2[i].trim() + "</option>");
- %>
- </select>
- </div></td>
- </tr>
- <tr bordercolor="#006666">
- <td height="28" background="images/bg.gif" class="bbb">
- <div align="right">学期</div></td>
- <td colspan="2" background="images/bg.gif">
- <table width="174" height="28" border="0" cellpadding="0" cellspacing="0">
- <tr>
- <td width="69">
- <div align="left">
- <select name="select4" id="select4">
- <option value="1">第一学年</option>
- <option value="2">第二学年</option>
- <option value="3">第三学年</option>
- <option value="4">第四学年</option>
- <option selected>选择学年</option>
- </select>
- </div>
- <div align="right"> </div></td>
- <td width="33" class="bbb"><div align="right">成绩</div></td>
- <td width="72" class="bbb"><input name="select5" type="text" id="select5" size="4"></td>
- </tr>
- </table></td>
- </tr>
- <tr>
- <td> </td>
- <td width="65">
- <div align="right">
- <input name="tijiao" type="submit" id="tijiao" value="提交">
- </div></td>
- <td width="107" bordercolor="#006666"><div align="left">
- <input name="chongzhi" type="reset" id="chongzhi" value="重置">
- </div></td>
- </tr>
- </table>
- </form>
- </div></td>
- </tr>
- </table>
- <br>
- </div></td>
- </tr>
- </table>
- </td>
- </tr>
- </table>
- </TD>
- <TD ROWSPAN=2> <IMG SRC="images/temp_07.jpg" WIDTH=5 HEIGHT=455></TD>
- </TR>
- <TR>
- <TD>
- <table width="231" border="0" cellspacing="0" cellpadding="0" height="229" background="images/left_bottom.jpg">
- <tr>
- <td width="231" height="222" valign="top"><div align="center">
- <p><font color="#2DFFFF" size="5"> </font></p>
- <table width="200" border="1">
- <tr>
- <td><div align="center"><a href="admincourse.jsp">【课程分配】</a></div></td>
- </tr>
- <tr>
- <td><div align="center"><a href="adminstudent.jsp">【学生管理】</a></div></td>
- </tr>
- </table>
- <br>
- <br>
- <table width="200" border="0">
- <tr>
- <td><div align="center"><a href="adminlyb.jsp">查看留言</a></div></td>
- </tr>
- </table>
- <p align="center"><br>
- <a href="index1.htm" class="ccc">[退出系统]</a></p>
- </div>
- </td>
- </tr>
- </table>
- </TD>
- </TR>
- <TR>
- <TD COLSPAN=8> <IMG SRC="images/temp_09.jpg" WIDTH=750 HEIGHT=5></TD>
- </TR>
- <TR>
- <TD COLSPAN=8> <img src="images/temp_10.jpg" width=752 height=20></TD>
- </TR>
- </TABLE>
- </BODY>
- </HTML>