?? salescount.jsp
字號:
<%@ page language="java" contentType="text/html; charset=GB18030"
pageEncoding="GB18030"%>
<%@ page import="com.bjsxt.shopping.stat.*, java.util.*"%>
<%
List<ProductStatItem> items = StatService.getProductsBySaleCount();
String imgName = (String)request.getAttribute("imgName");
%>
<!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=GB18030">
<title>用戶列表</title>
</head>
<body>
<table align="center" border="1">
<tr>
<td>name</td>
<td>count</td>
</tr>
<%
for(int i=0; i<items.size(); i++) {
ProductStatItem p = items.get(i);
%>
<tr>
<td><%=p.getProductName() %></td>
<td><%=p.getTotalSalesCount() %></td>
</tr>
<%
}
%>
</table>
<img src="<%=request.getContextPath()%>/admin/images/stat/<%=imgName%>"></img>
</body>
</html>
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -