📄 storeinsearch.jsp
字号:
<%@ page contentType="text/html; charset=gb2312" language="java" errorPage="" %>
<%@page import = "java.util.*"%>
<%@page import = "model.store.hibernate.*"%>
<%
request.setCharacterEncoding("gb2312");
List storeinList = (List)session.getAttribute("storeinlist");
%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>STORE SYSTEM</title>
</head>
<body>
<p align="center">入库信息浏览表</p>
<table width="617" border="1" align="center">
<tr bgcolor="#DFDFFF">
<td><div align="center">序号</div></td>
<td><div align="center">名称</div></td>
<td><div align="center">入库时间</div></td>
<td><div align="center">库房编号</div></td>
<td><div align="center">货物名称</div></td>
<td><div align="center">客户名称</div></td>
<td width="9%"><div align="center">修改</div></td>
</tr>
<%
if (storeinList != null) {
for (int i=0; i<storeinList.size(); i++) {
Storein storein = (Storein)storeinList.get(i);
%>
<tr>
<td width="10%" bgcolor="#FFFF00"><%=i+1%></td>
<td width="10%" bgcolor="#FFFF00"><%=storein.getName()%></td>
<td width="17%" bgcolor="#FFFF00"><%=storein.getIntime()%></td>
<td width="18%" bgcolor="#FFFF00"><%=storein.getStoreroom().getId()%></td>
<td width="22%" bgcolor="#FFFF00"><%=storein.getProduct().getName()%></td>
<td width="24%" bgcolor="#FFFF00"><%=storein.getClient().getName()%></td>
<td valign=center><a href="storeinselect.do?id=<%=storein.getId()%>"><img height=18 width=47 border=0 src="store/image/modify.gif"></a></td>
</tr>
<%
}
}
%>
</table>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -