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

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

开发平台:

JavaScript

  1. <%@ page contentType="text/html; charset=GBK" language="java" import="java.sql.*" errorPage="" %>
  2. <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix = "c" %>
  3. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
  4. <html>
  5. <head>
  6. <meta http-equiv="Content-Type" content="text/html; charset=GBK">
  7. <title>无标题文档</title>
  8. <script language="JavaScript" type="text/JavaScript">
  9. <!--
  10. function MM_reloadPage(init) {  //reloads the window if Nav4 resized
  11.   if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
  12.     document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
  13.   else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
  14. }
  15. MM_reloadPage(true);
  16. //-->
  17. </script>
  18. </head>
  19. <body style="background-image:url(images/10636126.jpg) ">
  20. <c:forEach var="detailed" items="${detailed}">
  21. <div id="Layer1" style="position:absolute; left:271px; top:17px; width:504px; height:442px; z-index:1; background-color:#CCCCCC">
  22.   <table width="478" height="339" border="1">
  23.     <tr>
  24.       <td width="180" rowspan="7"><img height="200" width="158" src="${detailed.productimage }"/></td>
  25.       <td width="73" height="36">编号:</td>
  26.       <td width="203">${detailed.productid}</td>
  27.     </tr>
  28.     <tr>
  29.       <td height="39">商品名称:</td>
  30.       <td>${detailed.productname }</td>
  31.     </tr>
  32.     <tr>
  33.       <td height="37">作者:</td>
  34.       <td>${detailed.productauthor }</td>
  35.     </tr>
  36.     <tr>
  37.       <td height="35">价格:</td>
  38.       <td>${detailed.productprice }</td>
  39.     </tr>
  40.     <tr>
  41.       <td height="34">出版社</td>
  42.       <td>${detailed.productpublishing }</td>
  43.     </tr>
  44.     <tr>
  45.       <td height="101">简介</td>
  46.       <td>${detailed.productintroduction }</td>
  47.     </tr>
  48.     <tr>
  49.       <td height="39" colspan="2"><a href="showProduct.do">关闭</a></td>
  50.     </tr>
  51.   </table>
  52. </div>
  53. </c:forEach>
  54. </body>
  55. </html>