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

📄 modifyproduct.jsp

📁 网上购物系统struts+spring+hibernate实现
💻 JSP
字号:
<%@ page contentType="text/html;charset=UTF-8" pageEncoding="UTF-8"%><%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %><html>	<head>		<title>修改商品</title>	</head>	<body>		<center>			<h2>				修改商品信息			</h2>			<hr>			<br>			<form action="${pageContext.request.contextPath }/admin/modifyProduct.do" method="post">					<input type="hidden" name="product.id" value="${product.id }" >					<input type="hidden" name="product.catalog.id" value="${product.catalog.id }" >				<table width="40%" cellpadding="1" cellspacing="1" bgcolor="blue">					<tr bgcolor="#F2F2F2"  >						<td>							商品名称						</td>						<td>							<input type="text" name="product.productName" value="${product.productName }">						</td>					</tr>				<tr bgcolor="#F2F2F2"  >						<td>							商品价格						</td>						<td>							<input type="text" name="product.unitPrice" value="${product.unitPrice }">						</td>					</tr>										<tr bgcolor="#F2F2F2"  >						<td>							商品描述						</td>						<td>							<textarea rows="4" cols="30" name="product.description">${product.description }</textarea>						</td>					</tr>				</table>					<input type="submit" value="提交">			</form><table height="10%">	<tr><td><td></tr></table>		</center>	</body></html>

⌨️ 快捷键说明

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