listbl.jsp~5~
来自「本文件中还有JSP、php和delphi等源程序」· JSP~5~ 代码 · 共 55 行
JSP~5~
55 行
<%@ page contentType="text/html; charset=GBK" %>
<%@ taglib uri="/WEB-INF/struts-bean.tld" prefix="bean" %>
<%@ taglib uri="/WEB-INF/struts-html.tld" prefix="html" %>
<%@ taglib uri="/WEB-INF/struts-logic.tld" prefix="logic" %>
<%@ taglib uri="/WEB-INF/struts-nested.tld" prefix="nested" %>
<html>
<head>
<link rel="STYLESHEET" type="text/css" href="css/shared.css">
<title>
listbl
</title>
</head>
<body bgcolor="#ffffff" >
<h3 align="center">
借阅图书历史信息
</h3>
<br>
<hr height=1 />
<html:form method="post" action="listBookAction.do">
<table width="100%">
<tr>
<td class="tdframe">
<table class="table1" width="100%">
<thead class="tdsectionbar">
<td align="center" class="tdsectionbar" >图书名称</td>
<td align="center" class="tdsectionbar" >图书现存</td>
<td align="center" class="tdsectionbar" >数量</td>
<td align="center" class="tdsectionbar" >借阅时间</td>
<td align="center" class="tdsectionbar" >数量</td>
</thead>
<tbody id="bookRows" >
<logic:iterate name="bookActionForm" property="books" id="books">
<tr class="tdsectionbar">
<td class="tdbg0" >
<bean:write name="books" property="bookName" />
</td>
<td class="tdbg0" >
<bean:write name="books" property="qty" format="###"/>
</td>
<td class="tdbg0">
<bean:write name="books" property="totalQty" format="###"/>
</td>
</tr>
</logic:iterate>
</tbody>
</table>
</td>
</tr>
</table>
</html:form>
<hr height=1 />
</body>
</html>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?