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

📄 selecttypereader.jsp

📁 图书管理系统 jsp+tomcat+sql2000
💻 JSP
字号:
<%@ page contentType="text/html; charset=gb2312" language="java" import="java.sql.*" errorPage="" %>
<%@ page import="java.util.List"%>
<%@ page import="com.actionForm.TypeReaderForm"%>
<%
List list=(List)request.getAttribute("list");
%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>翼飞图书管理系统——图书设置</title>
</head>

<script language="javascript" type="">
function deleteForm(date){
if(confirm("确定删除吗?")){
window.location.href="typeReaderAction.do?method=deleteTypeReader&typeReaderName="+date;
}
}
</script>
<body>
<div align="center">
<jsp:include page="../topOne.jsp"/>
<jsp:include page="../topTwo.jsp"/>
<table width="799" border="0" cellpadding="0" cellspacing="0" background="Images/upPlace.jpg">
  <tr>
    <td height="21" class="word_black">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;您当前的位置——图书设置——读者类别管理</td>
  </tr>
</table>
<table width="799" height="28" border="0" cellpadding="0" cellspacing="0" background="Images/operationOne.jpg">
  <tr align="center">
    <td class="style2">———————读者类别查询———————</td>
  </tr>
</table>
<table width="799" height="457" border="0" cellpadding="0" cellspacing="0" background="Images/operationTwo.jpg" >
  <tr>
    <td valign="top" ><div align="center">
      <br><table width="660" height="20" border="0" cellpadding="0" cellspacing="0">
        <tr>
          <td colspan="2" align="right" valign="bottom"><a href="typeReaderAction.do?method=insertTypeReader">添加读者类别</a></td>
          </tr>
      </table>
      <table  border="1" cellpadding="0" cellspacing="0" bordercolor="#FFFFFF" bordercolorlight="#FFFFFF" bordercolordark="#819BBC">
        <tr bgcolor="#83B9FF"  class="word_white" align="center">

          <td width="140" height="25">读者类别名称</td>
          <td width="140">限定时间</td>
          <td width="140">收费标准</td>
          <td width="140">备注信息</td>
          <td width="100">操作</td>
        </tr>
<%for(int i=0;i<list.size();i++){
  TypeReaderForm form=(TypeReaderForm)list.get(i);
  %>
        <tr align="center">
          <td height="25"><%=form.getTypeName()%></td>
          <td><%=form.getSaveTime()%></td>
          <td><%=form.getPrice()%>元</td>
          <td><%=form.getRemark()%></td>
          <td><a href="javascript:deleteForm('<%=form.getTypeName()%>')">删除</a></td>
        </tr>
 <%}%>
      </table>
      <br>
    </div></td>
  </tr>
</table><jsp:include page="../bottom.jsp"/>
</div>
</body>
</html>

⌨️ 快捷键说明

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