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

📄 changeproducttype.jsp

📁 前台
💻 JSP
字号:
<%@ page language="java" import="java.util.*,domain.*" pageEncoding="UTF-8"%>

<% 
  List<ProductType> pt = (List<ProductType>)request.getAttribute("pt");

%>

<html>
	<head>
		<title>交易撮合</title>
<style type="text/css">
<!--
a:link {
	COLOR: #3e4a59; LINE-HEIGHT: 18px; FONT-FAMILY: "Verdana";text-decoration: none;
}
a:visited {
	text-decoration: none;
}
a:hover {
	text-decoration: none;
}
a:active {
	text-decoration: none;
}
-->
</style>
		<meta http-equiv="content-type" content="text/html;charset=gbk">
		<link href="style.css" rel="stylesheet" type="text/css">
	</head>

	<body>
		<TABLE cellSpacing=0 cellPadding=0 width="100%" border=0>
			<TBODY>
				<TR>
					<TD height=25>
						&nbsp;您现在的位置:<a href="/webpk/htproducttype.do">商品类别管理</a> >>> 更改商品类型
					</TD>
				</TR>
				<TR>
					<TD bgColor=#2650a6>
						<IMG height=1 src="images\blank(1).gif" width=1>
					</TD>
				</TR>
				<TR>
					<TD>
						<IMG height=2 src="images\blank(1).gif" width=574>
					</TD>
				</TR>
			</TBODY>
		</TABLE>
	    
		<form name="love" method="post" action="/webpk/htchangeproducttype.do">
			<table align="center">
				<tr><td>商品的ID</td><td><input type="text" readonly="true" name="id" value="<%=pt.get(0).getTypeid() %>"></td></tr>
				<tr><td>商品的类别</td><td><input type="text" name="ptype" value="<%=pt.get(0).getTitle() %>"></td></tr>
				<tr><td>商品的父类</td><td><input type="text" name="parent" value="<%=pt.get(0).getParent()%>"></td></tr>
				<tr><td>备注</td><td><textarea rows="5" cols="25" name="remark" ><%=pt.get(0).getRemark()%></textarea></tr>
				<tr><td></td></tr>
				<tr><td><input type="submit" value="提 交"></td></tr>
			</table>
		</form>
		
	</body>
</html>

⌨️ 快捷键说明

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