index.jsp~33~

来自「基于b/s模式的jsp在线考试系统」· JSP~33~ 代码 · 共 42 行

JSP~33~
42
字号
<%@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 /><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>
  </tbody>
</table>
</center>
</body>
</html>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?