showProductList.jsp
上传用户:zhc3n3
上传日期:2022-07-30
资源大小:2750k
文件大小:2k
源码类别:

WEB源码(ASP,PHP,...)

开发平台:

JavaScript

  1. <%@ page language="java" import="java.util.*,com.t11.web.action.*" pageEncoding="GBK"%>
  2. <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
  3. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  4. <html>
  5.   <head>
  6.     
  7.     <title>商品查看</title>
  8.     
  9. <meta http-equiv="pragma" content="no-cache">
  10. <meta http-equiv="cache-control" content="no-cache">
  11. <meta http-equiv="expires" content="0">    
  12. <meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
  13. <meta http-equiv="description" content="This is my page">
  14. <!--
  15. <link rel="stylesheet" type="text/css" href="styles.css">
  16. -->
  17.     <style type="text/css">
  18. <!--
  19. .style4 {color: #F4F4F4}
  20. .style5 {color: #333333}
  21. -->
  22.     </style>
  23.   </head>
  24.   
  25. <body style="background-image:url(images/10636126.jpg); background-repeat:no-repeat ">
  26.     <div id="Layer1" class="style4" style="position:absolute; left:164px; top:104px; width:851px; height:293px; z-index:1;background-color:#CCCCCC">
  27.   <table width="19%" height="229" border="0">
  28. <tr>
  29. <c:forEach var="product" items="${PRODUCT}">
  30. <td width="211"><table width="19%" height="229" border="0">
  31.         <tr>
  32.           <td width="75%" height="133">              <p><a href="detailed.do?product=${product.productid }"><img height="162" width="158" src="${product.productimage }"/> </a></p>
  33.               <p>商品编号:${product.productid } </p>
  34.               <p>商品名:${product.productname } </p>
  35.               <p>价格:${product.productprice } </p></td>
  36.         <tr>
  37.           <td><label>
  38.             <center>
  39.               <input type="submit" name="buy" id="buy" value="购买" />
  40.             </center>
  41.           </label></td>
  42.         </tr>
  43.       </table></td>
  44.       </c:forEach>
  45.   </tr>
  46. </table>
  47.  <c:if test="${indexpages > 1}">
  48.     <a href="showProduct.do?pg=${indexpages-1}">[上一页]</a>
  49.  </c:if>
  50. <c:forEach var="pages" begin="1" end="${pages}">
  51.   <a href="showProduct.do?pg=${pages}">[${pages}]</a> &nbsp;
  52.   </c:forEach>
  53.   <c:if test="${indexpages<pages}">
  54.     <a href="showProduct.do?pg=${indexpages+1}">[下一页]</a>
  55. </c:if></div>
  56. <a href="product.jsp" class="style5">返回到添加页面</a>
  57. </body>
  58. </html>