📄 result.jsp
字号:
<%@ page language="java" pageEncoding="gbk" contentType="text/html; charset=gbk" %>
<%@ taglib uri="http://jakarta.apache.org/struts/tags-bean" prefix="bean" %>
<%@ taglib uri="http://jakarta.apache.org/struts/tags-html" prefix="html" %>
<%@ taglib uri="http://jakarta.apache.org/struts/tags-logic" prefix="logic" %>
<%@ taglib uri="http://jakarta.apache.org/struts/tags-tiles" prefix="tiles" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>学生成绩管理系统</title>
<meta http-equiv="content-type" content="text/html; charset=gbk">
<meta http-equiv="Content-Style-Type" content="text/css">
<meta http-equiv="Content-Script-Type" content="text/javascript">
<link href="css/base.css" rel="stylesheet" type="text/css">
<script LANGUAGE="JavaScript" TYPE="text/javascript" SRC="js/calendar.js"></script>
</head>
<body>
<div class="header">
<div class="headerBox">
<table cellpadding="0" class="headerInfo" cellspacing="0" border="0">
<tr>
<td rowspan="2">
<span class="title"> 学生成绩管理系统</span>
</td>
<td style=" text-align:right;">制作人:</td>
<td style=" text-align:right; width:12em; ">杨诚</td>
</tr>
</table>
</div>
</div>
<div class="screenName">
<a href="index.jsp">主页</a>
>>
<html:link action="course?method=init">课程信息管理</html:link>
>>
课程评分
</div>
<html:form action="result?method=add">
<div class="body">
<div class="guidance">
课程评分画面.<br>
</div>
<br>
<h6>课程评分信息</h6>
<table width="101%" border="0" cellpadding="0" cellspacing="0" class="split">
<tbody>
<tr>
<div class="box">
<span class=input><span class=inputCaption>课程编号</span>
<html:text property="id" name="Course" styleClass="text2Lock" readonly="true"></html:text>
</span><br>
<span class=input><span class=inputCaption>课程名称</span>
<html:text property="name" name="Course" styleClass="text2Lock" readonly="true"></html:text>
</span><br>
<span class=input><span class=inputCaption>学员名称</span>
<html:select property="courseid" >
<logic:iterate id="stu" name="studentList">
<option value="<bean:write name="stu" property="id" />" ><bean:write name="stu" property="name" /></option>
</logic:iterate>
</html:select>
</span> <br>
<span class="input"><span class="inputCaption">种类</span>
<html:select property="kind">
<logic:iterate id="num" name="resultNum">
<option value="<bean:write name="num" property="name" />" ><bean:write name="num" property="name" /></option>
</logic:iterate>
</html:select>
</span><br>
<span class="input"><span class="inputCaption">评分学年</span>
<html:select property="gradeyear">
<logic:iterate id="year" name="resultDate">
<option value="<bean:write name="year" property="name" />" ><bean:write name="year" property="name" /></option>
</logic:iterate>
</html:select><br>
<span class=input><span class=inputCaption>分数</span>
<html:text property="count" styleClass="text2" ></html:text>
</span>
<br>
</tr>
</tbody>
</table>
<table class=split cellSpacing=0 cellPadding=0 border=0>
<tbody>
<tr>
<td class=split>
<html:submit styleClass="submit" >确定</html:submit>
</td>
</tr>
</tbody>
</table>
</div>
</html:form>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -