📄 detail.jsp
字号:
<%@ include file = "../../config.jsp" %>
<%@ page import="java.util.*"%>
<%@ page contentType="text/html;charset=GBK"%>
<jsp:useBean id="Manager" scope="page" class="myshop.product_sys.ManagerProduct"/>
<jsp:useBean id="Handle" scope="page" class="myshop.Handle"/>
<%
Hashtable ProductInfo = new Hashtable();
int Pid = Handle.getInt(request,"Pid");
ProductInfo = Manager.DetailProInfo(tb_shop_catalog,tb_shop_product_info,Pid);
%>
<html>
<head>
<title>CWC大型购物商城</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<link href="file:///C|/resin2.1.4/doc/myshop/style" rel="stylesheet" type="text/css">
<link href="../../style" rel="stylesheet" type="text/css">
</head>
<body>
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td bgcolor="#000000"><table width="100%" border="0" cellspacing="1" cellpadding="3">
<tr>
<td colspan="2" bgcolor="33ccff">商品操作 -> 管理商品 -> 详细资料</td>
</tr>
<tr>
<td width="21%" bgcolor="eeeeee">名称:</td>
<td width="79%" align="left" bgcolor="eeeeee"><%=ProductInfo.get("name")%></td>
</tr>
<tr>
<td bgcolor="eeeeee">简介:</td>
<td align="left" bgcolor="eeeeee"><%=ProductInfo.get("description")%></td>
</tr>
<tr>
<td bgcolor="eeeeee">关键字:</td>
<td align="left" bgcolor="eeeeee"><%=ProductInfo.get("keywords")%></td>
</tr>
<tr>
<td bgcolor="eeeeee">货架:</td>
<td align="left" bgcolor="eeeeee"><%=ProductInfo.get("catalog")%></td>
</tr>
<tr>
<td bgcolor="eeeeee">图片:</td>
<td align="left" bgcolor="eeeeee"><img src=../../<%=ProductInfo.get("img_path")%> border=1></td>
</tr>
<tr align="center" valign="middle">
<td colspan="2" bgcolor="eeeeee"> <input name="button" type="button" onclick="history.back()" value="返回"></td>
</tr>
</table></td>
</tr>
</table>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -