专业负责人功能页
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>专业负责人功能页</title>
</head>
<body>
<%
Object message = request.getAttribute("message");
if(message!=null && !"".equals(message)){
%>
<script type="text/javascript">
alert("<%=request.getAttribute("message")%>");
</script>
<%} %>
<center>
<h1>
专业负责人功能页
</h1>
<form name="form" method="post" action="Screen.jsp">
<input type="submit" value="返回主页">
</form>
</center>
<div align="center">
<form name="form" action="Servlet?method=EvaluateCard1" method="post" onsubmit="return check()">
<input type="submit" value="审批卡专业审查信息" />
</form>
</body>
</html>
审批卡专业审查信息
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<%@taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>审批卡专业审查信息</title>
</head>
<body>
<%
Object message = request.getAttribute("message");
if(message!=null && !"".equals(message)){
%>
<script type="text/javascript">
alert("<%=request.getAttribute("message")%>");
</script>
<%} %>
<center>
<h1>
审批卡专业审查信息
</h1>
<form name="form" method="post" action="Teacher1.jsp">
<input type="submit" value="返回负责人功能页">
</form>
</center>
<div align="center">
<table align="center" border="1" width="500">
<tr>
<td>编号</td>
<td>申请日期</td>
<td>课程名称</td>
<td>任课教师</td>
<td>课程编号</td>
<td>课程性质</td>
<td>学分</td>
<td>授课班级</td>
<td>授课专业</td>
<td>考试方式</td>
<td>考试日期</td>
<td>考试人数</td>
<td>出题方式</td>
<td>成绩组成</td>
<td>考核与评价方式</td>
<td>考核内容合理性分析</td>
<td>出题方式</td>
<td>专业审查意见</td>
<td>专业审查结论</td>
<td>状态</td>
</tr>
<c:forEach items="${bean}" var="item" varStatus="status">
<tr>
<td>${item.getCardId()}</td>
<td>${item.getCardData()}</td>
<td>${item.getCourseName()}</td>
<td>${item.getCourseTeacher()}</td>
<td>${item.getCourseID()}</td>
<td>${item.getCourseNature()}</td>
<td>${item.getCredit()}</td>
<td>${item.getCourseClass()}</td>
<td>${item.getCourseMajor()}</td>
<td>${item.getTestWay()}</td>
<td>${item.getTestData()}</td>
<td>${item.getTestCount()}</td>
<td>${item.getTestMethod()}</td>
<td>${item.getTestGrade()}</td>
<td>${item.getTestEvaluation()}</td>
<td>${item.getTestAnalysis()}</td>
<td>
<form name="form" action="Servlet?method=EvaluateCard11&CardId=${item.getCardId()}" method="post" onsubmit="return check()">
<input type="submit" value="专业审查意见" />
</form>
</td>
<td>
<form name="form" action="Servlet?method=EvaluateCard12&CardId=${item.getCardId()}" method="post" onsubmit="return check()">
<input type="submit" value="专业审查结论" />
</form>
</td>
<td>
<form name="form" action="Servlet?method=Pass&CardId=${item.getCardId()}" method="post" onsubmit="return check()">
<input type="submit" value="通过" />
</form>
</td>
</tr>
</c:forEach>
</table>
</div>
</body>
</html>
专业审查意见
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
</head>
<body>
<%
Object message = request.getAttribute("message");
if(message!=null && !"".equals(message)){
%>
<script type="text/javascript">
alert("<%=request.getAttribute("message")%>");
</script>
<%} %>
<center>
<h1>
专业审查意见
</h1>
</center>
<div align="center">
<form name="form" action="Servlet?method=EvaluateCard111" method="post" onsubmit="return check()">
专业审查意见
<input type="text" name="address" />
<p>
<input type="submit" value="添加" />
</form>
</div>
</body>
</html>
专业审查结论
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
</head>
<body>
<%
Object message = request.getAttribute("message");
if(message!=null && !"".equals(message)){
%>
<script type="text/javascript">
alert("<%=request.getAttribute("message")%>");
</script>
<%} %>
<center>
<h1>
专业审查结论
</h1>
</center>
<div align="center">
<form name="form" action="Servlet?method=EvaluateCard121" method="post" onsubmit="return check()">
专业审查结论
<input type="text" name="address" />
<p>
<input type="submit" value="添加" />
</form>
</div>
</body>
标签:专业,JAVA,上机,getAttribute,item,2021,审查,message,null From: https://www.cnblogs.com/JIANGzihao0222/p/17004422.html