f0f0f4d3e8ee001b178095bc6b40daf6
来自「Internet 开发技术分章节代码和自己完成的课程设计全代码(在zuoye文件」· 代码 · 共 35 行
TXT
35 行
<%@ page contentType="text/html; charset=gb2312"%>
<%@ page import="bean.*"%>
<jsp:useBean id="products" class="bean.Products" scope="session"/>
<html><head><title>shooping</title></head><body><center>
<form action="cart.jsp" method=get>
<table width="75%" border="1" bordercolor="#006633">
<tr bgcolor="#999999">
<td>id</td>
<td>名称</td>
<td>价格</td>
<td>是否有库存</td>
<td>出版社</td>
</tr>
<%
java.util.Vector v=products.getItems();
java.util.Enumeration e=v.elements();
while(e.hasMoreElements())
{
Item item=(Item)e.nextElement();
%>
<tr>
<td><input type="checkbox" name="itemId" value="<%=item.getItemId()%>"></td>
<td><%=item.getDescription()%></td>
<td><%=item.getPrice()%></td>
<td><%=item.getAvailable()%></td>
<td><%=item.getProducer()%></td>
</tr>
<%}%>
<tr align=left><td colspan=5 ><input type=submit value="add" name="action"></td></tr>
<tr align=left><td colspan=5><a href="cart.jsp">购物车</a>『』<a href="logout.jsp">注销</a></td></tr>
</table>
</form></center>
</body></html>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?