⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 selectbook.jsp

📁 图书馆管理系统 能满足 查询
💻 JSP
字号:
<%@ page language="java" pageEncoding="utf-8"%>
<%@page import="com.jxyd.common.Fenye"%>
<%@ taglib uri="http://struts.apache.org/tags-bean" prefix="bean"%>
<%@ taglib uri="http://struts.apache.org/tags-html" prefix="html"%>
<%@ taglib uri="http://struts.apache.org/tags-logic" prefix="logic"%>
<%@ taglib uri="http://struts.apache.org/tags-tiles" prefix="tiles"%>
<%
	String path = request.getContextPath();
	String basePath = request.getScheme() + "://"
			+ request.getServerName() + ":" + request.getServerPort()
			+ path + "/";
%>

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html:html lang="true">
	<head>
		<title>读者查询</title>
		<link href="<%=basePath%>/css/style.css" rel="stylesheet">
		<link href="<%=basePath%>/css/main.css" rel="stylesheet">
	</head>
	<script type="text/javascript">
	function Select(){
             document.showform.action="user.do?method=SelectBook";
             document.showform.submit();
             return true;
             }
	</script>
	<body>
		<form action="" name="showform" method="post">
			&nbsp;
			<!--RIGHT-->
			<div class="right">
				<div class="content">
					<p align="center">
						馆藏图书查询
					</p>
					<div class="data_bot1" id="lendinfo">
						&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;按
						<select name="select">
							<option value="1" selected="selected">
								图书条码
							</option>
							<option value="2">
								书名
							</option>
							<option value="3">
								作者
							</option>
						</select>
						<input type="text" name="book" >
						<img src="<%=basePath%>/images/search.gif" onclick="Select()" alt="查询"
							onmouseover="this.style.cursor='hand'" >
						<table>
							<tr>
								<th>
									图书条码号
								</th>
								<th>
									书名
								</th>
								<th>
									ISBN
								</th>
								<th>
									作者
								</th>
								<th>
									分类编号
								</th>
								<th>
									出版社
								</th>
								<th>
									出版日期
								</th>
								<th>
									馆藏数目
								</th>
							</tr>
							<logic:present name="book">
								<logic:iterate id="bb" name="book" type="com.jxyd.vo.BookBean">
									<tr>
										<td>
											<%=bb.getCodeId()%>
										</td>
										<td>
											<%=bb.getTitle()%>
										</td>
										<td>
											<%=bb.getISBN()%>
										</td>
										<td>
											<%=bb.getAuthor()%>
										</td>
										<td>
											<%=bb.getClassId()%>
										</td>
										<td>
											<%=bb.getPublishCom()%>
										</td>
										<td>
											<%=bb.getPublishDate()%>
										</td>
										<td>
											<%=bb.getNum()%>
										</td>
									</tr>
								</logic:iterate>
							</logic:present>
						</table>
											</div>
						<%
							Fenye fenye = (Fenye) request.getAttribute("fenye");
							if (fenye != null) {
						%>
						<%=fenye.getDisplay()%>
						<%
							}
						%>
				</div>
			</div>
		</form>
	</body>
</html:html>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -