userMana.jsp 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. <%@ page language="java" pageEncoding="UTF-8"%>
  2. <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
  3. <%
  4. String path = request.getContextPath();
  5. %>
  6. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  7. <html xmlns="http://www.w3.org/1999/xhtml">
  8. <head>
  9. <meta http-equiv="pragma" content="no-cache" />
  10. <meta http-equiv="cache-control" content="no-cache" />
  11. <meta http-equiv="expires" content="0" />
  12. <meta http-equiv="keywords" content="keyword1,keyword2,keyword3" />
  13. <meta http-equiv="description" content="This is my page" />
  14. <link rel="stylesheet" type="text/css" href="<%=path %>/css/base.css" />
  15. <script language="javascript">
  16. function userDel(userId)
  17. {
  18. if(confirm('您确定删除吗?'))
  19. {
  20. window.location.href="<%=path %>/userDel.action?userId="+userId;
  21. }
  22. }
  23. function userSet(userId,ty)
  24. {
  25. window.location.href="<%=path %>/userSet.action?userId="+userId + "&ty=" + ty;
  26. }
  27. </script>
  28. </head>
  29. <body leftmargin="2" topmargin="2" background='<%=path %>/images/allbg.gif'>
  30. <table width="98%" border="0" cellpadding="2" cellspacing="1" bgcolor="#D1DDAA" align="center" style="margin-top:8px">
  31. <tr bgcolor="#E7E7E7">
  32. <td height="14" colspan="3" background="<%=path %>/images/tbg.gif">&nbsp;会员管理&nbsp;</td>
  33. </tr>
  34. <tr align="center" bgcolor="#FAFAF1" height="22">
  35. <td>姓名</td>
  36. <td width="100px">电话</td>
  37. <td width="100px">操作</td>
  38. </tr>
  39. <c:forEach items="${userList}" var="user">
  40. <tr align='center' bgcolor="#FFFFFF" onMouseMove="javascript:this.bgColor='red';" onMouseOut="javascript:this.bgColor='#FFFFFF';" height="22">
  41. <td bgcolor="#FFFFFF" align="center">
  42. ${user.name}
  43. </td>
  44. <td bgcolor="#FFFFFF" align="center">
  45. ${user.tel}
  46. </td>
  47. <td bgcolor="#FFFFFF" align="center">
  48. <a href="#" onclick="userDel(${user.id})" class="pn-loperator">删除</a>
  49. </td>
  50. </tr>
  51. </c:forEach>
  52. </table>
  53. </body>
  54. </html>