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

📄 dstatistic.jsp

📁 使用java写的ERP系统,功能比较全
💻 JSP
字号:
<%@ page contentType="text/html;charset=utf-8" errorPage="../../error.jsp"%>
<%@ include file="/page/taglibs.jsp"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
	<head>
		<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
		<title>客户信息</title>
		<link href="css/inside.css" rel="stylesheet" type="text/css" />
	</head>
	<body>
		<div class="title">
			<h2>客户统计</h2>
		</div>
		<table width="100%" border="0" cellpadding="8" cellspacing="1"
			class="contentArea">
			<tr>
				<td class="contentList">
					<table width="100%" border="0" cellspacing="1" cellpadding="8"
						class="contentListTable2">
						<tr class="contentListTd">
							<td width="16%" class="contentListTdColName1" align="center">
								<h2>${requestScope.all }</h2>
							</td>
						</tr>
						<c:if test="${requestScope.alltype!=null}">
						<tr class="contentListTd">
							<td width="16%" class="contentListTdColName1">
							<h4>
							&nbsp;
								<c:forEach items="${requestScope.alltype }" var="type">
									${type }&nbsp;&nbsp;&nbsp;&nbsp;
								</c:forEach>
							</h4>
							</td>
						</tr>
						</c:if>
						<c:forEach items="${requestScope.user }" var="us">
						<tr class="contentListTd">
							<td width="16%" class="contentListTdColName1">
							<h5>
									${us }
							</h5>
							</td>
						</tr>
						</c:forEach>
					</table>
				</td>
			</tr>
		</table>
	</body>
</html>

⌨️ 快捷键说明

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