?? listadmin.jsp
字號(hào):
<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%><%@ taglib uri="/WEB-INF/c.tld" prefix="c"%><%@ taglib uri="/WEB-INF/fmt.tld" prefix="fmt"%><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"><html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=gb2312" /> <title>無標(biāo)題文檔</title> <link href="../../css/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> <c:if test="${!empty message}"> <script type="text/javascript"> alert('<c:out value="${message}"/>'); </script> <c:remove var="message" /> </c:if> <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"> 營(yíng)業(yè)員列表 </td> </tr> </table> <form method="post" action="/woss_ajd0706_team3/admin/deleteAdmin.do"> <table width="96%" border="1" cellspacing="0" cellpadding="0"> <tr> <td width="5%"> <div align="center"> <strong>刪除</strong> </div> </td> <td width="15%"> <div align="center"> <strong>用戶名</strong> </div> </td> <td width="15%"> <div align="center"> <strong>姓名</strong> </div> </td> <td width="20%"> <div align="center"> <strong>營(yíng)業(yè)廳</strong> </div> </td> <td width="15%"> <div align="center"> <strong>職位</strong> </div> </td> <td width="15%"> <div align="center"> <strong>電子郵箱</strong> </div> </td> <td width="20%"> <div align="center"> <strong>備注</strong> </div> </td> </tr> <c:forEach items="${requestScope.adminList}" var="admin"> <tr> <td> <input type="checkbox" name="name" value="${admin.loginName}" /> </td> <td> <a href="<c:url value='/admin/modifyAdmin.do' />?NAME=${admin.loginName}">${admin.loginName}</a> </td> <td> ${admin.realName } </td> <td> ${admin.address } </td> <td> ${admin.role.name } </td> <td> ${admin.email } </td> <td> ${admin.remark } </td> </tr> </c:forEach> <tr> <td align="left"> <input type="submit" value="刪除" /> </td> <td colspan="6" align="center"> 共 <span class="fontred">${requestScope.adminnum}</span> 個(gè)營(yíng)業(yè)員 當(dāng)前第 <span class="fontred">${requestScope.currentPage}</span> 頁 共有 <span class="fontred">${requestScope.pages}</span> 頁 <a href="#" onclick="self.location='<c:url value='/admin/listAdmin.do' />?currentPage=1'">首頁</a> <c:choose> <c:when test="${requestScope.pages==1}"> 上一頁/下一頁 </c:when> <c:otherwise> <c:choose> <c:when test="${requestScope.currentPage==1}"> 上一頁/<a href="#" onclick="self.location='<c:url value='/admin/listAdmin.do' />?currentPage=${requestScope.currentPage+1}'">下一頁</a> </c:when> <c:when test="${requestScope.currentPage==pages}"> <a href="#" onclick="self.location='<c:url value='/admin/listAdmin.do' />?currentPage=${requestScope.currentPage-1}'">上一頁</a>/下一頁 </c:when> <c:otherwise> <a href="#" onclick="self.location='<c:url value='/admin/listAdmin.do' />?currentPage=${requestScope.currentPage-1}'">上一頁</a>/ <a href="#" onclick="self.location='<c:url value='/admin/listAdmin.do' />?currentPage=${requestScope.currentPage+1}'">下一頁</a> </c:otherwise> </c:choose> </c:otherwise> </c:choose> <a href="#" onclick="self.location='<c:url value='/admin/listAdmin.do' />?currentPage=${requestScope.pages}'">尾頁</a> </td> </tr> </table> </form> </body></html>
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -