1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- <%@ 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 userDel(userId)
- {
- if(confirm('您确定删除吗?'))
- {
- window.location.href="<%=path %>/userDel.action?userId="+userId;
- }
- }
- function userSet(userId,ty)
- {
-
- window.location.href="<%=path %>/userSet.action?userId="+userId + "&ty=" + ty;
-
- }
-
-
- </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="3" background="<%=path %>/images/tbg.gif"> 会员管理 </td>
- </tr>
- <tr align="center" bgcolor="#FAFAF1" height="22">
-
- <td>姓名</td>
- <td width="100px">电话</td>
-
- <td width="100px">操作</td>
- </tr>
-
- <c:forEach items="${userList}" var="user">
-
- <tr align='center' bgcolor="#FFFFFF" onMouseMove="javascript:this.bgColor='red';" onMouseOut="javascript:this.bgColor='#FFFFFF';" height="22">
- <td bgcolor="#FFFFFF" align="center">
- ${user.name}
- </td>
- <td bgcolor="#FFFFFF" align="center">
- ${user.tel}
- </td>
-
- <td bgcolor="#FFFFFF" align="center">
-
- <a href="#" onclick="userDel(${user.id})" class="pn-loperator">删除</a>
- </td>
- </tr>
- </c:forEach>
- </table>
- </body>
- </html>
|