showProductList.jsp
上传用户:zhc3n3
上传日期:2022-07-30
资源大小:2750k
文件大小:2k
源码类别:
WEB源码(ASP,PHP,...)
开发平台:
JavaScript
- <%@ page language="java" import="java.util.*,com.t11.web.action.*" pageEncoding="GBK"%>
- <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
- <html>
- <head>
- <title>商品查看</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">
- <!--
- .style4 {color: #F4F4F4}
- .style5 {color: #333333}
- -->
- </style>
- </head>
- <body style="background-image:url(images/10636126.jpg); background-repeat:no-repeat ">
- <div id="Layer1" class="style4" style="position:absolute; left:164px; top:104px; width:851px; height:293px; z-index:1;background-color:#CCCCCC">
- <table width="19%" height="229" border="0">
- <tr>
- <c:forEach var="product" items="${PRODUCT}">
- <td width="211"><table width="19%" height="229" border="0">
- <tr>
- <td width="75%" height="133"> <p><a href="detailed.do?product=${product.productid }"><img height="162" width="158" src="${product.productimage }"/> </a></p>
- <p>商品编号:${product.productid } </p>
- <p>商品名:${product.productname } </p>
- <p>价格:${product.productprice } </p></td>
- <tr>
- <td><label>
- <center>
- <input type="submit" name="buy" id="buy" value="购买" />
- </center>
- </label></td>
- </tr>
- </table></td>
- </c:forEach>
- </tr>
- </table>
- <c:if test="${indexpages > 1}">
- <a href="showProduct.do?pg=${indexpages-1}">[上一页]</a>
- </c:if>
- <c:forEach var="pages" begin="1" end="${pages}">
- <a href="showProduct.do?pg=${pages}">[${pages}]</a>
- </c:forEach>
- <c:if test="${indexpages<pages}">
- <a href="showProduct.do?pg=${indexpages+1}">[下一页]</a>
- </c:if></div>
- <a href="product.jsp" class="style5">返回到添加页面</a>
- </body>
- </html>