📄 booksloon.jsp
字号:
<%@ page contentType="text/html; charset=UTF-8" language="java"
import="java.sql.*"%>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
<html>
<head>
<style>
<!--
.wr{font-size: 12pt; line-height: 22px}
.wr1 { FONT-SIZE: 12px; LINE-HEIGHT: 200%}
.wr2 { FONT-SIZE: 14px; LINE-HEIGHT: 200%}
.wr3 { FONT-SIZE: 12px}
.wr4 { FONT-SIZE: 12px; LINE-HEIGHT: 150%}
// -->
</style>
<title>清韵网上书店后台管理系统</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<script type="text/javascript">
function getshelfName(shelfName,shelfId)
{
var disp=document.getElementById("disp");
disp.innerText=shelfName;
var sid=document.getElementById("sid");
sid.value=shelfId;
}
</script>
</head>
<body bgcolor="#FFFFDB" text="#000000" leftmargin="0" topmargin="0"
marginwidth="0" marginheight="0">
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td>
</td>
</tr>
</table>
<table width="700" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="200" class="wr4">
<div align="center"></div>
</td>
<td width="1">
<img src="images/point.gif" width="1" height="1">
</td>
<td class="wr4">
<div align="center">
<b>图书上展台</b>
</div>
</td>
</tr>
<tr>
<td width="200" height="30" class="wr4">
<div align="center"></div>
</td>
<td width="1" height="30" bgcolor="#000000">
<img src="images/point.gif" width="1" height="1">
</td>
<td height="30">
<div class="wr4">
你正在为
<font color="#FF0000"><i><span id="disp">${shelf.shelfName
}</span>
</i>
</font> 栏目选择图书
</div>
</td>
</tr>
<tr valign="top">
<td width="200">
<p align="center" class="wr4">
[图书分类目录]
</p>
<table border="0" cellspacing="0" cellpadding="2" align="center">
<c:forEach items="${requestScope.upTwo}" var="two">
<tr>
<td class="wr4">
<img src="images/x1.gif" width="4" height="4">
<a
href="${pageContext.request.contextPath }/notUp.do?shelfId=${two.shelfId }">
${two.shelfName }</a>
</td>
</tr>
</c:forEach>
</table>
</td>
<td width="1" bgcolor="#000000">
<img src="images/point.gif" width="1" height="1">
</td>
<td>
<p class="wr4">
[书库分类]
</p>
<table width="460" border="0" cellspacing="1" cellpadding="2" align="center" bgcolor="#000000">
<tr bgcolor="#FFFFDB" align="center">
<td class="wr4" width="42">序号</td>
<td class="wr4" width="94">书名</td>
<td class="wr4" width="72">作者</td>
<td class="wr4" width="133">出版社</td>
<td class="wr4" width="133">价格</td>
<td class="wr4" width="133">上架</td>
</tr>
<c:forEach items="${requestScope.notUp}" var="book">
<tr bgcolor="#FFFFDB">
<td class="wr4" width="42">${book.bookId }</td>
<td class="wr4" width="94"><a href="MerchandiseInformationBrow.jsp" target="_blank">${book.bookName }</a></td>
<td class="wr4" width="133">${book.bookAuthor }</td>
<td class="wr4" width="72">${book.bookPublish }</td>
<td class="wr4" width="72">${book.bookPrice }</td>
<td class="wr4" width="72"><a href="${pageContext.request.contextPath }/updateUp.do?shelfId=${book.shelfId }&twoShelfId=${shelf.shelfId }&bookId=${book.bookId }">上架</a> </td>
</tr>
</c:forEach>
</table>
</td>
</tr>
</table>
</body>
</html>
<script></script>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -