<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>学生功能页</title>
</head>
<body>
<% String a = (String) request.getAttribute("routeMain");%>
<form align="middle">
<table align="center">
<tr>
<td>
<a href="change.jsp" style="text-decoration:none;">修改个人信息</a><br>
<a href="show.jsp?routeMain=<%=a%>" style="text-decoration:none;">查询考试成绩</a><br>
<a href="index.jsp" style="text-decoration:none;">退出系统</a>
</td>
</tr>
</table>
</form>
</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>
<form align="middle">
<table align="center">
<tr>
<td><a href="change.jsp" style="text-decoration: none;">修改个人信息</a><br>
<a href="inscore.jsp" style="text-decoration: none;">键入学科成绩</a><br>
<a href="find.jsp" style="text-decoration: none;">查询学生成绩</a><br>
<a href="index.jsp" style="text-decoration: none;">退出系统</a></td>
</tr>
</table>
</form>
</body>
</html>