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

📄 productlist.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/pager-taglib.tld" prefix="pg" %>
<!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">
<!--
body {
	margin-left: 15px;
	margin-top: 15px;
}
A:link {
	FONT-SIZE: 12px; COLOR: blue; FONT-FAMILY: 宋体; TEXT-DECORATION: none
}
-->
</style>
</head>

<body>
  <table width="776" border="0" cellspacing="0" cellpadding="0">
         	<tr>
         		<td id="card1" width="776" align="center" bgcolor="#3D84CD" style="cursor:hand; color:#ffffff; font-size:14px; font-weight:bold">
         			品牌列表</td>			
            </tr>   
  </table>
 <form name="deleteProductForm" method="get" action="deleteProduct.do">  
<table width="96%" border="1" cellspacing="0" cellpadding="0">  

    <pg:pager
    items = "${requestScope.productCount}" 
    index = "center"
    url="searchProduct.do" 
    maxPageItems = "2" 
    maxIndexPages = "2"  
    export = "pageOffset,currentPageNumber=pageNumber" 
    scope = "request"> 

 	<tr>
 	<td width="5%"><div align="center"><strong>删除</strong></div></td>
    <td width="15%"><div align="center"><strong>品牌名称</strong></div></td>
    <td width="10%"><div align="center"><strong>月租费</strong></div></td>
    <td width="10%"><div align="center"><strong>小时费率</strong></div></td>
    <td width="10%"><div align="center"><strong>日限时</strong></div></td>
    <td width="10%"><div align="center"><strong>月限时</strong></div></td>
    <td width="10%"><div align="center"><strong>上行速率</strong></div></td>
    <td width="10%"><div align="center"><strong>下行速率</strong></div></td>
    <td width="10%"><div align="center"><strong>流量费率</strong></div></td>
    <td width="20%"><div align="center"><strong>备注</strong></div></td>
  </tr>
    <c:forEach var="product" items="${requestScope.products}">
  <tr>
  	<td><div align="center"><input type="checkbox" name="selItem" value="<c:out value="${product.id}"/>"/></div></td>
    <td><div align="center"><a href="showProduct.do?productid=<c:out value="${product.id}"/>">&nbsp;<c:out value="${product.name}"/></a></div></td>
    <td><div align="center">&nbsp;<c:out value="${product.baseFee}"/></div></td>
    <td><div align="center">&nbsp;<c:out value="${product.rateFee}"/></div></td>
    <td><div align="center">&nbsp;<c:out value="${product.dailyLimit}"/></div></td>
    <td><div align="center">&nbsp;<c:out value="${product.monthLimit}"/></div></td>
    <td><div align="center">&nbsp;<c:out value="${product.upLimit}"/></div></td>
    <td><div align="center">&nbsp;<c:out value="${product.downLimit}"/></div></td>
    <td><div align="center">&nbsp;<c:out value="${product.sfee}"/></div></td>
    <td><div align="center">&nbsp;<c:out value="${product.remark}"/></div></td>
  </tr>
   </c:forEach> 
   <tr > 
   <td><input type="submit" value="删除"/></td>
	<td colspan="9" align="center">
	 <pg:param name="maxNumPerPage" value="2"/>
     <pg:index>
         <jsp:include page="../page.jsp" flush="true"/>
     </pg:index> 
    </pg:pager> 
   </td>
   </tr>
</table>
 </form> 
</body>
</html>

⌨️ 快捷键说明

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