⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 index.jsp

📁 这是图书管理系统 ~~用JSP实现的 大家要的可以
💻 JSP
字号:
<%@page contentType="text/html; charset=GBK"%>
<jsp:include flush="false" page="isLogin.jsp"/>
<html>
<head>
<title>Admin管理</title>
<script type="" language="javascript" src="js/public.js"></script>
</head>
<body bgcolor="#ffffff">
<center>
  <table>
    <tr>
      <th>
        <a href="index.jsp?action=1">图书录入</a>
      </th>
      <th>
        <a href="AdminBooksPageAction.do">图书馆里</a>
      </th>
      <th>
        <a href="LendPageAction.do?page=1">已借出书</a>
      </th>
      <th>
        <a href="UsersPageAction.do?page=1">用户管理</a>
      </th>
       <th>
        <a href="PunishPageAction.do?page=1">罚款单察看</a>
      </th>
      <th>
        <a href="index.jsp?action=6">返还操作</a>
      </th>
      <th>
        <a href="AdminOutAction.do">退出</a>
      </th>
    </tr>
  </table>
  <table>
    <tbody>
      <c:if test="${param.action==1 or empty param.action}"><jsp:include flush="false" page="insertBook.jsp"/></c:if>
      <c:if test="${param.action==2}"><jsp:include flush="false" page="bookList.jsp"/></c:if>
      <c:if test="${param.action==3}"><jsp:include flush="false" page="lendlist.jsp"/></c:if>
      <c:if test="${param.action==4}"><jsp:include flush="false" page="userlist.jsp"/></c:if>
      <c:if test="${param.action==5}"><jsp:include flush="false" page="punishlist.jsp"/></c:if>
      <c:if test="${param.action==6}"><jsp:include flush="false" page="givebook.jsp"/></c:if>
      <c:if test="${param.action==7}"><jsp:include flush="false" page="testsList.jsp"/></c:if>
    </tbody>
  </table>
</center>
</body>
</html>

⌨️ 快捷键说明

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