📄 month.jsp
字号:
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<%@ taglib uri="/WEB-INF/c.tld" prefix="c" %>
<%@ taglib uri="/WEB-INF/fmt.tld" prefix="fmt" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>无标题文档</title>
<link href="../../layout/shct10000.css" rel="stylesheet" type="text/css" />
<style type="text/css">
<!--
.STYLE1 {font-weight: bold}
-->
</style>
</head>
<body>
<table width="96%" border="0" align="center" cellpadding="0" cellspacing="15">
<tr>
<td align="center">用户月消费信息</td>
</tr>
</table>
<table width="96%" border="1" align="center" cellpadding="0" cellspacing="0" bordercolor="#FFFFFF" bgcolor="#FFFFFF">
<tr bordercolor="#CCCCCC">
<td width="20%" nowrap="nowrap">业务帐号</td>
<td width="10%" nowrap="nowrap">品牌</td>
<td width="15%" nowrap="nowrap">月租费</td>
<td width="14%" nowrap="nowrap">每小时费率</td>
<td width="20%" nowrap="nowrap">带宽</td>
<td width="10%" nowrap="nowrap">时长</td>
<td width="11%" nowrap="nowrap">费用</td>
</tr>
<tr bordercolor="#CCCCCC">
<td> <c:out value="${requestScope.radcheck.username}"/></td>
<td> <c:out value="${requestScope.radcheck.product.name}"/></td>
<td> <c:out value="${requestScope.radcheck.product.baseFee}"/></td>
<td> <c:out value="${requestScope.radcheck.product.rateFee}"/></td>
<td> <c:out value="${requestScope.radcheck.product.downLimit}"/></td>
<td> <c:out value="${requestScope.radcheck.product.baseFee}"/></td>
<td> <c:out value="${requestScope.radcheck.product.baseFee}"/></td>
</tr>
</table>
<table width="96%" border="1" align="center" cellpadding="0" cellspacing="0" bordercolor="#FFFFFF" bgcolor="#FFFFFF">
<tr bordercolor="#CCCCCC">
<td width="20%" nowrap="nowrap">NAS地址</td>
<td width="20%" nowrap="nowrap">日期</td>
<td width="20%" nowrap="nowrap">时长</td>
<td width="20%" nowrap="nowrap">流量</td>
</tr>
<c:forEach var="usermonth" items="${requestScope.usermonths}">
<tr bordercolor="#CCCCCC">
<td> <c:out value="${usermonth.nasipaddress}"/></td>
<td> <fmt:formatDate pattern="dd" value="${usermonth.ondate}"/>号</td>
<td> <c:out value="${usermonth.timeDuration}"/></td>
<td> <c:out value="${usermonth.flux}"/></td>
</tr>
</c:forEach>
</table>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -