buyinfo.jsp
来自「这是本人刚刚得到的JBuilder9软件开发项目实践的源码」· JSP 代码 · 共 47 行
JSP
47 行
<%@ page contentType="text/html;charset=gb2312" %>
<html>
<head>
<title>进货结果显示</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
</head>
<body>
<%@ include file="header.jsp" %>
<table width="100%" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td><table width="100%" border="1" cellspacing="0" cellpadding="0">
<tr align="center">
<td colspan="7">进货结果</td>
</tr>
<tr>
<td width="10%">商品名称</td>
<td width="11%">供货商名称</td>
<td width="13%">进货价格</td>
<td width="16%">进货数量</td>
<td width="16%">进货时间</td>
<td width="16%">进货人</td>
<td width="18%">库存数量</td>
</tr>
<tr>
<td><%=request.getAttribute("wareName")%></td>
<td><%=request.getAttribute("supplierName")%></td>
<td><%=request.getAttribute("buyPrice")%></td>
<td><%=request.getAttribute("buyQty")%></td>
<td><%=request.getAttribute("buyDate")%></td>
<td><%=request.getAttribute("buyPerson")%></td>
<td><%=request.getAttribute("resQty")%></td>
</tr>
<tr>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
</table></td>
</tr>
</table>
</body>
</html>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?