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

📄 showgoods.jsp

📁 老牌java开发的物流管理系统 详细的我也没有怎么看 好像是恒基的
💻 JSP
字号:
<%@ page language="java" pageEncoding="utf-8"%>
<%
	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 'showgoods.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;商品详细信息
				</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>
	
			<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=${requestScope.goodsinfo.typeId}">${requestScope.goodsinfo.typeId}</a>
					</td>
				
					<td width="140" align="right" valign="middle" class="style9">
						商品库存量:
					</td>
					<td width="140" align="center">
						${requestScope.goodsinfo.goodsStockNumber}
					</td>
				</tr>
				<tr>
					<td height="27" align="right" width="140">
						商品名称:
					</td>
					<td height="27" align="center" width="140">
						${requestScope.goodsinfo.goodsName}
					</td>
					<td width="140" align="right" valign="middle" class="style9">
						商品分类:
					</td>
					<td width="140" align="center">
						<a href="selectgoodstype.do?id=${requestScope.goodsinfo.goodsCateId}">${requestScope.goodsinfo.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=${requestScope.goodsinfo.goodsSupplyId}">${requestScope.goodsinfo.goodsSupplyId}</a>
					</td>
					<td align="right" valign="middle" class="style9" width="140">
						商品ABC分类:
					</td>
					<td align="center" width="140">
						${requestScope.goodsinfo.goodsABC}
					</td>

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

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

					<td width="140" align="center">
						${requestScope.goodsinfo.goodsPrice}元
					</td>
				</tr>
				<tr>
					<td height="26" align="right" valign="middle" class="style9"
						width="140">
						商品定购日期:
					</td>
					<td align="center" width="140">
						${requestScope.goodsinfo.goodsOrderDate}
					</td>
					<td align="right" valign="middle" class="style9" width="140">
						商品库存量:
					</td>
					<td align="center" width="140">
						${requestScope.goodsinfo.goodsStockNumber}
					</td>
				</tr>
				<tr>
					<td height="24" align="right" valign="middle" class="style9"
						width="140">
						商品入库日期:
					</td>
					<td align="center" width="140">
						${requestScope.goodsinfo.goodsStockInDate}
					</td>
					<td align="right" valign="middle" class="style9" width="140">
						商品在库位置:
					</td>
					<td colspan="4" align="center" width="140">
						<a href="stockregioninfo.do?id=${requestScope.goodsinfo.goodsStockId}">${requestScope.goodsinfo.goodsStockId}</a>
					</td>
				</tr>
			</table>
			<br />
		<br />
	</body>
</html>

⌨️ 快捷键说明

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