detailed.jsp
上传用户:zhc3n3
上传日期:2022-07-30
资源大小:2750k
文件大小:2k
- <%@ page contentType="text/html; charset=GBK" language="java" import="java.sql.*" errorPage="" %>
- <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix = "c" %>
- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
- <html>
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=GBK">
- <title>无标题文档</title>
- <script language="JavaScript" type="text/JavaScript">
- <!--
- function MM_reloadPage(init) { //reloads the window if Nav4 resized
- if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
- document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
- else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
- }
- MM_reloadPage(true);
- //-->
- </script>
- </head>
- <body style="background-image:url(images/10636126.jpg) ">
- <c:forEach var="detailed" items="${detailed}">
- <div id="Layer1" style="position:absolute; left:271px; top:17px; width:504px; height:442px; z-index:1; background-color:#CCCCCC">
- <table width="478" height="339" border="1">
- <tr>
- <td width="180" rowspan="7"><img height="200" width="158" src="${detailed.productimage }"/></td>
- <td width="73" height="36">编号:</td>
- <td width="203">${detailed.productid}</td>
- </tr>
- <tr>
- <td height="39">商品名称:</td>
- <td>${detailed.productname }</td>
- </tr>
- <tr>
- <td height="37">作者:</td>
- <td>${detailed.productauthor }</td>
- </tr>
- <tr>
- <td height="35">价格:</td>
- <td>${detailed.productprice }</td>
- </tr>
- <tr>
- <td height="34">出版社</td>
- <td>${detailed.productpublishing }</td>
- </tr>
- <tr>
- <td height="101">简介</td>
- <td>${detailed.productintroduction }</td>
- </tr>
- <tr>
- <td height="39" colspan="2"><a href="showProduct.do">关闭</a></td>
- </tr>
- </table>
- </div>
- </c:forEach>
- </body>
- </html>