resinfo.jsp
来自「这是本人刚刚得到的JBuilder9软件开发项目实践的源码」· JSP 代码 · 共 32 行
JSP
32 行
<%@ 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="2">库存查询结果</td>
</tr>
<tr>
<td width="10%">商品名称</td>
<td width="18%">库存数量</td>
</tr>
<tr>
<td><%=request.getAttribute("wareName")%></td>
<td><%=request.getAttribute("resQty")%></td>
</tr>
<tr>
<td> </td>
<td> </td>
</tr>
</table></td>
</tr>
</table>
</body>
</html>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?