123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- <%@ page language="java" pageEncoding="UTF-8"%>
- <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
- <%
- String path = request.getContextPath();
- %>
- <!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="pragma" content="no-cache" />
- <meta http-equiv="cache-control" content="no-cache" />
- <meta http-equiv="expires" content="0" />
- <meta http-equiv="keywords" content="keyword1,keyword2,keyword3" />
- <meta http-equiv="description" content="This is my page" />
- <link rel="stylesheet" type="text/css" href="<%=path %>/css/base.css" />
-
- <script language="javascript">
- function adminDel(userId)
- {
- if(confirm('您确定删除吗?'))
- {
- window.location.href="<%=path %>/adminDel.action?userId="+userId;
- }
- }
-
- function adminAdd()
- {
- var url="<%=path %>/admin/index/adminAdd.jsp";
- //var n="";
- //var w="480px";
- //var h="500px";
- //var s="resizable:no;help:no;status:no;scroll:yes";
- //openWin(url,n,w,h,s);
- window.location.href=url;
- }
- </script>
- </head>
- <body leftmargin="2" topmargin="2" background='<%=path %>/images/allbg.gif'>
- <table width="98%" border="0" cellpadding="2" cellspacing="1" bgcolor="#D1DDAA" align="center" style="margin-top:8px">
- <tr bgcolor="#E7E7E7">
- <td height="14" colspan="4" background="<%=path %>/images/tbg.gif"> 管理员维护 </td>
- </tr>
- <tr align="center" bgcolor="#FAFAF1" height="22">
- <td width="80px">ID</td>
- <td >用户名</td>
- <td >密码</td>
- <td width="200px">操作</td>
- </tr>
- <c:forEach items="${adminList}" var="admin1">
-
- <tr align='center' bgcolor="#FFFFFF" onMouseMove="javascript:this.bgColor='red';" onMouseOut="javascript:this.bgColor='#FFFFFF';" height="22">
- <td bgcolor="#FFFFFF" align="center">
- ${admin1.userid}
- </td>
- <td bgcolor="#FFFFFF" align="center">
- ${admin1.username}
- </td>
- <td bgcolor="#FFFFFF" align="center">
- ${admin1.userpw}
- </td>
- <td bgcolor="#FFFFFF" align="center">
-
- <c:if test="${admin1.username!='admin'}">
- <a href="#" onclick="adminDel(${admin1.userid})" class="red">删除</a>
- </c:if>
- </td>
- </tr>
- </c:forEach>
- </table>
-
- <table width='98%' border='0'style="margin-top:8px;margin-left: 5px;">
- <tr>
- <td>
- <input type="button" value="添加" style="width: 80px;" onclick="adminAdd()" />
- </td>
- </tr>
- </table>
- </body>
- </html>
|