⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 goodsshow.jsp

📁 老牌java开发的物流管理系统 详细的我也没有怎么看 好像是恒基的
💻 JSP
字号:
<%@ page language="java" pageEncoding="utf-8"%>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
<%
	String path = request.getContextPath();
	String basePath = request.getScheme() + "://"
			+ request.getServerName() + ":" + request.getServerPort()
			+ path + "/";
%>

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
	<head>
		<base href="<%=basePath%>">

		<title>My JSP 'goodsshow.jsp' starting page</title>

		<meta http-equiv="pragma" content="no-cache">
		<meta http-equiv="cache-control" content="no-cache">
		<meta http-equiv="expires" content="0">
		<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
		<meta http-equiv="description" content="This is my page">
		<!--
	<link rel="stylesheet" type="text/css" href="styles.css">
	-->
		<style type="text/css">
a {
	text-decoration: none;
}
</style>
	</head>

	<body>
		<table border="0" width="100%" cellspacing=0 cellpadding=3
			bordercolor="#326598">
			<tr bgcolor="#e8f4ff">
				<td height="30">
					&nbsp; 当前所在位置--&gt;商品信息查询--&gt;商品详细信息
				</td>
				<td height="30" align="right">
					<a href="javascript:history.back()">返回</a>
				</td>
			</tr>
		</table>
		<table border="0" width="600" cellspacing="0" cellpadding="5"
			align="center" bordercolor="#326598">
			<tr height="40">
				<td align="center">
					<b> 商品详细信息表</b>&nbsp;&nbsp;&nbsp;&nbsp;
					<font size="2" color="blue">(点击链接可获取更多信息)</font>
				</td>
			</tr>
		</table>
		<c:forEach var="list" items="${requestScope.list}">
		<table border="1" width="600" cellspacing="0" cellpadding="5"
				align="center" bordercolor="#326598">
				<tr>
					<td height="27" align="right" width="140">
						商品型号:
					</td>
					<td align="center" width="140">
						<a href="selecttypename.do?id=${list.typeId}">${list.typeId}</a>
					</td>

					<td width="140" align="right" valign="middle" class="style9">
						商品库存量:
					</td>
					<td width="140" align="center">
						${list.goodsStockNumber}
					</td>
				</tr>
				<tr>
					<td height="27" align="right" width="140">
						商品名称:
					</td>
					<td height="27" align="center" width="140">
						${list.goodsName}
					</td>
					<td width="140" align="right" valign="middle" class="style9">
						商品分类:
					</td>
					<td width="140" align="center">
						<a href="selectgoodstype.do?id=${list.goodsCateId}">${list.goodsCateId}</a>
					</td>
				</tr>
				<tr>
					<td width="140" height="27" align="right" valign="middle"
						class="style9">
						供应商:
					</td>
					<td width="140" height="12" align="center">
						<a href="supplyinfo.do?id=${list.goodsSupplyId}">${list.goodsSupplyId}</a>
					</td>
					<td align="right" valign="middle" class="style9" width="140">
						商品ABC分类:
					</td>
					<td align="center" width="140">
						${list.goodsABC}
					</td>

				</tr>
				<tr>
					<td height="25" align="right" valign="middle" class="style9"
						width="140">
						商品产地省:
					</td>
					<td align="center" width="140">
						${list.goodsProvince}
					</td>
					<td align="right" valign="middle" class="style9" width="140">
						商品产地市:
					</td>
					<td align="center" width="140">
						${list.goodsCity}
					</td>
				</tr>
				<tr>

					<td align="right" width="140">
						商品单位:
					</td>
					<td align="center" width="140">
						${list.goodsUnit}
					</td>
					<td align="right" valign="middle" class="style9" width="140">
						商品单价:
					</td>

					<td width="140" align="center">
						${list.goodsPrice}元
					</td>
				</tr>
				<tr>
					<td height="26" align="right" valign="middle" class="style9"
						width="140">
						商品定购日期:
					</td>
					<td align="center" width="140">
						${list.goodsOrderDate}
					</td>
					<td align="right" valign="middle" class="style9" width="140">
						商品库存量:
					</td>
					<td align="center" width="140">
						${list.goodsStockNumber}
					</td>
				</tr>
				<tr>
					<td height="24" align="right" valign="middle" class="style9"
						width="140">
						商品入库日期:
					</td>
					<td align="center" width="140">
						${list.goodsStockInDate}
					</td>
					<td align="right" valign="middle" class="style9" width="140">
						商品在库位置:
					</td>
					<td colspan="4" align="center" width="140">
						<a href="stockregioninfo.do?id=${list.goodsStockId}">${list.goodsStockId}</a>
					</td>
				</tr>
			</table>
			<br/>
		</c:forEach>
		<table border="0" width="600" cellspacing="0" cellpadding="5"
				align="center" bordercolor="#326598">
		<tr>
			  <td align="center" valign="top">
			    <a href="page.do?page=0">首页</a>&nbsp;
			    <a href="page.do?page=${requestScope.forward }">上一页</a>&nbsp;
			    <a href="page.do?page=${requestScope.back }">下一页</a>&nbsp;
			    <a href="page.do?page=${requestScope.end }">尾页</a>&nbsp;
			     当前[ ${requestScope.now } ]/[ ${requestScope.count } ]页&nbsp;&nbsp;
			  </td>
			</tr>
			</table>
	</body>
</html>

⌨️ 快捷键说明

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