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

📄 listbusinessdetail.jsp

📁 上网计费系统,适用网吧或者自己学习用用JAVA写成
💻 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>
<script type="text/javascript" src="../../js/calendar.js"></script>
<link href="../../layout/shct10000.css" rel="stylesheet" type="text/css" />
</head>

<body>
<form action="listBusiness.do" method="get">
<input name="businessType" type="hidden" value="businessDetail"/>
<table width="96%" border="0" align="center" cellpadding="0" cellspacing="15">
  <tr>
    <td align="center">帐务帐号
   	  <input name="accountName" type="text" size="15"/>
      <input name="submit" border="0" type="image" src="../../imgs/shct10000_003.gif"/>
	</td>
  </tr>
</table>
</form>

<c:forEach var="radcheck" items="${requestScope.bossuser.radchecks}">
<form action="showUserDetail.do" method="post">
<input type="hidden" name="businessName" value="<c:out value="${radcheck.username}"/>"/>
<table width="96%" border="1" align="center" cellpadding="0" cellspacing="0" bordercolor="#FFFFFF" bgcolor="#FFFFFF">
  <tr bordercolor="#CCCCCC">
    <td width="15%" nowrap="nowrap">业务帐号</td>
    <td width="15%" nowrap="nowrap">品牌</td>
    <td width="15%" nowrap="nowrap">月租费</td>
    <td width="15%" nowrap="nowrap">每小时费率</td>
    <td width="15%" nowrap="nowrap">带宽</td>
    <td width="20%" nowrap="nowrap">备注</td>
  </tr>  
  <tr bordercolor="#CCCCCC">
    <td>&nbsp;<c:out value="${radcheck.username}"/></td>
    <td>&nbsp;<c:out value="${radcheck.product.name}"/></td>
    <td>&nbsp;<c:out value="${radcheck.product.baseFee}"/></td>
    <td>&nbsp;<c:out value="${radcheck.product.rateFee}"/></td>
    <td>&nbsp;<c:out value="${radcheck.product.downLimit}"/></td>
    <td>&nbsp;<c:out value="${radcheck.product.remark}"/></td>
  </tr>
  <tr>
  	<td align="right">查询上网详细记录</td>
  	<td align="right">起始时间</td>
    <td align="right"><input class="input" id='startDate' name='startDate' type='text' onclick='WebCalendar.timeShow=true;calendar();'/></td>
    <td align="right">结束时间</td>
	<td align="right"><input class="input" id='endDate' name='endDate' type='text' onclick='WebCalendar.timeShow=true;calendar();'/></td>
	<td>
      <input name="submit" height="22" border="0" type="image" src="../../imgs/shct10000_003.gif" width="53"/>
	</td>
  </tr>  
</table>
</form><br/><br/>
</c:forEach>	  
</body>
</html>
  

⌨️ 快捷键说明

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