📄 index.jsp~38~
字号:
<%@page contentType="text/html; charset=GBK"%>
<%@taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
<html>
<head>
<title>管理员</title>
</head>
<%String name = (String) session.getAttribute("name");%>
<body bgcolor="#6699FF">
<br /><br />
<marquee scrollamount="2">
<h2>欢迎管理员:<%=name%>登录后台管理系统!</h2>
</marquee>
<br />
<center>
<table>
<tr>
<th width="100"><a href="/teacher/index.jsp?action=1">教师信息管理</a></th>
<th width="100"><a href="/teacher/index.jsp?action=2">学生信息管理</a></th>
<th width="100"><a href="/login.jsp">退出</a></th>
</tr>
</table>
<br /><br />
<hr /><br />
<table>
<tbody>
<c:if test="${empty param.action}">
<jsp:include flush="false" page="/teacher/welcome.jsp" />
</c:if>
<c:if test="${param.action == 1}">
<jsp:include flush="false" page="/teacher/tea_manage.jsp" />
</c:if>
<c:if test="${param.action == 2}">
<jsp:include flush="false" page="/teacher/stu_manage.jsp" />
</c:if>
<c:if test="${param.action == 3}">
<jsp:include flush="false" page="/teacher/deletefailure.jsp" />
</c:if>
<c:if test="${param.action == 4}">
<jsp:include flush="false" page="/teacher/modify.jsp"/>
</c:if>
<c:if test="${param.action == 5}">
<jsp:include flush="false" page="/teacher/modifysuccess.jsp"/>
</c:if>
<c:if test="${param.action == 6}">
<jsp:include flush="false" page="/teacher/modifyfailure.jsp"/>
</c:if>
</tbody>
</table>
</center>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -