• 2020 11 29


    图书管理系统:

    浏览图书界面:

    <%@ page language="java" contentType="text/ html; charset=UTF-8"
        pageEncoding="UTF-8" import = "java.util.*"%>
        <%@page import="bean.reader"%>
        <%@page import="bean.book"%>
    <!DOCTYPE html>
    <html>
    <head>
    <meta charset="ISO-8859-1">
    <title>Insert title here</title>
    </head>
    <body>
    <%
    List<book> Pastbook=(List<book>)session.getAttribute("Pastbook");
    request.setAttribute("Pastbook",Pastbook);
    %>
    <form action="Saddc1.jsp" method="post" onsubmit="return chech(this)">
        <table align="center" width="450" border="1">
        <tr>
            <td align="center" colspan="5">
                <h2>浏览图书</h2>
                </td>
        </tr>
        <tr aligh="center">
            <td>图书编号</td>
            <td>图书名称</td>
            <td>作者</td>
            <td>出版社</td>
            <td>可借阅人数</td>
            <td>借阅人</td>
        </tr>
        <%
            for(book p:Pastbook){
        %>
        <tr aligh="center">
            <td><%=p.getID() %></td>
            <td><%=p.getName() %></td>
            <td><%=p.getWritter() %></td>
            <td><%=p.getHome() %></td>
            <td><%=p.getNum() %></td>
            <td><%=p.getReader() %></td>
            <br>
            </tr>
            <%        
            }
            %>
            <td><a href="user.jsp">注销</a></td>
            <td><a href="loginM.jsp">返回上一级</a></td>
        </table>
        </form>
    </body>
    </html>
  • 相关阅读:
    兼容 数组 api map代码
    => 应用在js回调函数中
    let防止变量声明提前
    for-in 的坑
    call 与 apply的区别
    放大镜 鼠标滑入 鼠标滑轮放大
    js 获取元素宽
    [转]AES加密填充模式
    快被AES整崩溃了
    [转]C++ Socket编程步骤
  • 原文地址:https://www.cnblogs.com/fuxw4971/p/14212414.html
Copyright © 2020-2023  润新知