listbook.jsp~6~

来自「本文件中还有JSP、php和delphi等源程序」· JSP~6~ 代码 · 共 56 行

JSP~6~
56
字号
<%@ 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>
listbook
</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>
</thead>
<tbody id="bookRows" >
<logic:iterate name="bookActionForm" property="books" id="books">
<tr class="tdsectionbar">
<td class="tdbg0" >
<bean:write name="books" property="ordercode" />
</td>
<td class="tdbg0" >
<bean:write name="books" property="itemname" />
</td>
<td class="tdbg0">
<bean:write name="books" property="qty" />
</td>
<td class="tdbg0" >
<bean:write name="books" property="customername" />
</td>
</tr>
</logic:iterate>
</tbody>
</table>
</td>
</tr>
</table>
</html:form>
<hr height=1 />
</body>
</html>

⌨️ 快捷键说明

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