forked from maxliaops/Java_Web_Examples
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstuResultQuery.jsp
More file actions
66 lines (64 loc) · 2.83 KB
/
stuResultQuery.jsp
File metadata and controls
66 lines (64 loc) · 2.83 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<%@ page contentType="text/html; charset=gb2312" language="java" errorPage="" %>
<%@ taglib uri="/WEB-INF/struts-logic.tld" prefix="logic" %>
<%@ taglib uri="/WEB-INF/struts-bean.tld" prefix="bean" %>
<%@ taglib uri="/WEB-INF/struts-html.tld" prefix="html" %>
<html>
<head>
<title>网络在线考试</title>
<html:base />
<link href="CSS/style.css" rel="stylesheet">
</head>
<body>
<table width="778" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td height="131" background="Images/top_bg.jpg"> </td>
</tr>
</table>
<table width="778" border="0" align="center" cellspacing="0" cellpadding="0">
<tr>
<td valign="top" bgcolor="#FFFFFF"><table width="774" height="487" border="0" cellpadding="0" cellspacing="0" align="right">
<tr>
<td height="30" bgcolor="#EEEEEE" class="tableBorder_thin"><table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="76%" class="word_grey"> <img src="Images/f_ico.gif" width="8" height="8"> 当前位置:→ <span class="word_darkGrey">考生成绩查询 >>></span></td>
<td width="24%" align="right"><img src="Images/m_ico1.gif" width="5" height="9">
<html:link page="/default.jsp" >返回首页</html:link> </td>
</tr>
</table></td>
</tr>
<tr>
<td align="center" valign="top">
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="84%"> </td>
</tr>
</table>
<table width="98%" border="1" cellpadding="0" cellspacing="0" bordercolor="#FFFFFF" bordercolordark="#FFFFFF" bordercolorlight="#67A8DB">
<tr align="center">
<td width="21%" height="27" bgcolor="#B2D6F1">准考证号</td>
<td width="26%" bgcolor="#B2D6F1">所属课程</td>
<td width="22%" bgcolor="#B2D6F1">考试时间</td>
<td width="11%" bgcolor="#B2D6F1">单选题分数</td>
<td width="11%" bgcolor="#B2D6F1">多选题分数</td>
<td width="9%" bgcolor="#B2D6F1">合计分数</td>
</tr>
<logic:iterate id="stuResult" name="stuResultQuery" type="com.wgh.actionForm.StuResultForm" scope="request">
<tr>
<td style="padding:5px;"><bean:write name="stuResult" property="stuId" filter="true"/></td>
<td style="padding:5px;"><bean:write name="stuResult" property="whichLesson" filter="true"/></td>
<td align="center"><bean:write name="stuResult" property="joinTime" format="yyyy-MM-dd HH:mm:ss" filter="true"/></td>
<td align="center"><bean:write name="stuResult" property="resSingle" filter="true"/></td>
<td align="center"><bean:write name="stuResult" property="resMore" filter="true"/></td>
<td align="center"><bean:write name="stuResult" property="resTotal" filter="true"/></td>
</tr>
</logic:iterate>
</table>
</td>
</tr>
</table>
</td>
</tr>
</table>
<%@ include file="copyright.jsp"%>
</body>
</html>