?? searchresult.jsp
字號:
<%@ page language="java" import="java.util.*" contentType="text/html;charset=gbk" pageEncoding="GB18030"%>
<%@ page import="com.bjsxt.shopping.product.*"%>
<%
String keyword = new String(request.getParameter("keyword").getBytes("8859_1"), "GBK");
final int PAGE_SIZE = 2; //每頁顯示多少條記錄
final int PAGES_PER_TIME = 10;//每次顯示多少個頁碼鏈接
int pageNo = 1;
String strPageNo = request.getParameter("pageNo");
if (strPageNo != null && !strPageNo.trim().equals("")) {
try {
pageNo = Integer.parseInt(strPageNo);
} catch (NumberFormatException e) {
pageNo = 1;
}
}
if (pageNo <= 0)
pageNo = 1;
%>
<%
List<Product> products = new ArrayList<Product>();
int totalRecords = ProductMgr.getInstance().find(products, pageNo, PAGE_SIZE, keyword);
int totalPages = (totalRecords + PAGE_SIZE - 1) / PAGE_SIZE;
if (pageNo > totalPages)
pageNo = totalPages;
%>
<html>
<head>
<title>會員列表</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<meta name="keywords"
content="Discuz!,Board,Comsenz,forums,bulletin board,">
<meta name="description" content="金尚商城會員列表">
<meta name="generator" content="Discuz! 4.0.0RC4 with Templates 4.0.0">
<meta name="MSSmartTagsPreventParsing" content="TRUE">
<meta http-equiv="MSThemeCompatible" content="Yes">
<style type="text/css"><!--
a { text-decoration: none; color: #000000 }
a:hover { text-decoration: underline }
body { scrollbar-base-color: #F3F6FA; scrollbar-arrow-color: #4D76B3; font-size: 12px; background-color: #ffffff }
table { font: 12px Verdana,Tahoma; color: #000000 }
input,select,textarea { font: 11px Verdana,Tahoma; color: #000000; font-weight: normal; background-color: #F3F6FA }
select { font: 11px Verdana,Tahoma; color: #000000; font-weight: normal; background-color: #F3F6FA }
.nav { font: 12px Verdana,Tahoma; color: #000000; font-weight: bold }
.nav a { color: #000000 }
.header { font: 11px Verdana,Tahoma; color: #000000; font-weight: bold; background-image: url("images/green/bg01.gif") }
.header a { color: #FFFFFF }
.category { font: 11px Verdana,Tahoma; color: #000000; background-color: #EFEFEF }
.tableborder { background: #4D76B3; border: 0px solid #4D76B3 }
.singleborder { font-size: 0px; line-height: 0px; padding: 0px; background-color: #F3F6FA }
.smalltxt { font: 11px Verdana,Tahoma }
.outertxt { font: 12px Verdana,Tahoma; color: #000000 }
.outertxt a { color: #000000 }
.bold { font-weight: bold }
.altbg1 { background: #F3F6FA }
.altbg2 { background: #FFFFFF }
--></style>
<script language="JavaScript" src="images/common.js"></script>
<style type="text/css" id="defaultPopStyle">.cPopText { font-family: Tahoma, Verdana; background-color: #FFFFCC; border: 1px #000000 solid; font-size: 12px; padding-right: 4px; padding-left: 4px; height: 20px; padding-top: 2px; padding-bottom: 2px; visibility: hidden; filter: Alpha(Opacity=80)}</style>
<script type="text/javascript">
function checkDelete() {
var ids = document.getElementsByName("id");
if(document.formDelete.selectAll.checked) {
for(var i=0; i<ids.length; i++) {
ids[i].checked="checked";
}
} else {
for(var i=0; i<ids.length; i++) {
ids[i].checked="";
}
}
}
</script>
</head>
<body leftmargin="0" rightmargin="0" topmargin="0"
onkeydown="if(event.keyCode==27) return false;">
<div id="popLayer" style="position: absolute; z-index: 1000;"
class="cPopText"></div>
<table style="table-layout: fixed;" align="center" border="0"
cellpadding="0" cellspacing="0" width="97%">
<tbody>
<tr>
<td class="nav" align="left" nowrap="nowrap" width="90%">
產品管理 » 產品列表
</td>
<td align="right" width="10%">
<a href="#bottom"><img src="../images/arrow_dw.gif"
align="absmiddle" border="0">
</a>
</td>
</tr>
</tbody>
</table>
<br>
<center><a href="ProductAdd.jsp" target="detail">添加新產品</a></center>
<table align="center" border="0" cellpadding="0" cellspacing="0"
width="97%">
<tbody>
<tr>
<td>
<table border="0" cellpadding="0" cellspacing="0">
<tbody>
<tr>
<td height="3"></td>
</tr>
<tr>
<td>
<table class="tableborder" cellpadding="2" cellspacing="1">
<tbody>
<tr class="smalltxt" bgcolor="#f3f6fa">
<td class="header">
<%=totalRecords %>
</td>
<td class="header">
<%=pageNo %>/<%=totalPages %>
</td>
<%
int start = ((pageNo - 1) / PAGES_PER_TIME) * PAGES_PER_TIME + 1;
for(int i=start; i<start+PAGES_PER_TIME; i++) {
if(i > totalPages) break;
if(pageNo == i) {
%>
<td bgcolor="#ffffff"> <u><b><%=i %></b></u> </td>
<%
} else {
%>
<td>
<a href="SearchResult.jsp?pageNo=<%=i%>&keyword=<%=keyword%>"><%=i%></a>
</td>
<%
}
}
%>
<td>
<a href="ProductList.jsp?pageNo=<%=pageNo+1%>">></a>
</td>
<td>
<a
href="http://bbs.allsmart.com/member.php?action=list&srchmem=&order=&admins=&page=100">><b>|</b>
</a>
</td>
<td style="padding: 0pt;">
<input name="custompage" size="2"
style="border: 1px solid rgb(77, 118, 179);"
onKeyDown="javascript: if(window.event.keyCode == 13) window.location='member.php?action=list&srchmem=&order=&admins=&page='+this.value;"
type="text">
</td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
<td height="3"></td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
<form action="ProductDeleteMultiple.jsp" name="formDelete" method="post" target="detail">
<table class="tableborder" align="center" cellpadding="4"
cellspacing="1" width="97%">
<tbody>
<tr class="header">
<td align="center" width="10%">
選擇
</td>
<td align="center" width="9%">
產品ID
</td>
<td align="center" width="6%">
產品名稱
</td>
<td align="center" width="16%">
產品描述
</td>
<td align="center" width="10%">
市場價格
</td>
<td align="center" width="10%">
會員價格
</td>
<td align="center" width="20%">
上架時間
</td>
<td align="center" width="10%">
所屬類別
</td>
<td align="center">
處理
</td>
</tr>
<%
for (int i = 0; i < products.size(); i++) {
Product p = products.get(i);
%>
<tr>
<td class="altbg2" align="center">
<input type="checkbox" name="id" value="<%=p.getId()%>"/>
</td>
<td class="altbg1" align="center" nowrap="nowrap">
<%=p.getId()%>
</td>
<td class="altbg2" align="center">
<%=p.getName()%>
</td>
<td class="altbg1" align="center">
<%=p.getDescr()%>
</td>
<td class="altbg1" align="center">
<%=p.getNormalPrice()%>
</td>
<td class="altbg1" align="center">
<%=p.getMemberPrice()%>
</td>
<td class="altbg1" align="center">
<%=new java.text.SimpleDateFormat("yyyy-MM-dd HH:mm:ss")
.format(p.getPdate())%>
</td>
<td class="altbg1" align="center">
<%//=CategoryService.getInstance().loadById(p.getCategoryId()).getName()%>
<%=p.getCategory().getName()%>
</td>
<td class="altbg1" align="right">
<a target="detail" href="ProductDelete.jsp?id=<%=p.getId()%>" onclick="return confirm('真的要刪?')">刪</a>
<a target="detail" href="ProductModify.jsp?id=<%=p.getId()%>">改</a>
</td>
</tr>
<%
}
%>
<tr>
<td>
<input name="selectAll" type="checkbox" onclick="checkDelete()"/>
<input type="submit" value="Delete"/>
</td>
</form> <!-- end formDelete -->
<td colspan="8" class="altbg2">
<form name="formSearch" action="SearchResult.jsp" method="get">
<input type="text" size="10" name="keyword" value="<%=keyword%>"/>
搜索
<input value="提 交" type="submit">
</form>
<span class="bold">或</span> 排序方式:
<a
href="http://bbs.allsmart.com/member.php?action=list&order=credits">積分</a>
-
<a
href="http://bbs.allsmart.com/member.php?action=list&order=username">用戶名</a>
-
<a
href="http://bbs.allsmart.com/member.php?action=list&order=gender">性別</a>
-
<a
href="http://bbs.allsmart.com/member.php?action=list&order=regdate">注冊日期</a>
-
<a
href="http://bbs.allsmart.com/member.php?action=list&admins=yes">管理頭銜</a>
</td>
</tr>
</tbody>
</table>
<a name="bottom" />
</body>
</html>
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -