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

📄 list_products.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><jsp:include page="list_catalogs.jsp" />			<hr>			<br>	<c:if test="${products != null}">	<table width="90%" cellpadding="1" cellspacing="1" bgcolor="blue">				<tr bgcolor="#F2F2F2" align="center">					<th>序号</th>					<th>产品名称</th>					<th>单价</th>					<th>描述</th>					<th colspan="3">操作</th>				</tr>				<c:forEach var="product" items="${products}"  varStatus="ind">					<tr bgcolor="#F2F2F2" align="center">						<td>${ind.count }</td>						<td>${product.productName }</td>						<td>${product.unitPrice }</td>						<td>${product.description }</td>						<td><a href="${pageContext.request.contextPath }/admin/toAddProduct.do">增加</a></td>						<td><a href="${pageContext.request.contextPath }/admin/preparemodifyProduct.do?id=${product.id }">修改</a></td>						<td><a href="${pageContext.request.contextPath }/admin/deleteProductById.do?id=${product.id }">删除</a></td>					</tr>				</c:forEach>		<c:if test="${empty products}">			<tr bgcolor="#F2F2F2" align="center">				<td colspan="6">没有相关记录</td>			</tr>		</c:if>					</table>	</c:if><table height="10%">	<tr><td><td></tr></table>		</center>				</body></html>

⌨️ 快捷键说明

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