?? user-manage-body.jsp
字號:
<%@ page language="java" pageEncoding="UTF-8"%>
<%@ taglib uri="/page-tag" prefix="page"%>
<%@ taglib uri="http://jakarta.apache.org/struts/tags-bean" prefix="bean"%>
<%@ taglib uri="http://jakarta.apache.org/struts/tags-html" prefix="html"%>
<%@ taglib uri="http://jakarta.apache.org/struts/tags-logic" prefix="logic" %>
<html:form action="/manageUser.do?method=listUser" styleId="listUsers">
<table width="98%" align="center" border="0" class="TableBack">
<th colspan="3" align="left">
客戶列表</th>
<tr>
<td colspan="3" align="right">
<!-- <div style="text-align:center;width:100%;">-->
<html:messages id="msg" property="operationResult" message="true">
<bean:write name="msg" filter="false"/>
</html:messages>
<!-- </div>-->
<input type="button" value="刪除" name="delete" onclick="recordDelete('userId', 'listUsers', 'module/user/manageUser.do?method=deleteUsers')">
</td>
</tr>
<tr>
<td colspan="3">
<table align="center" border="1" width="100%" id="userInformation" class="TableBack2">
<tr>
<th>
用戶名</th>
<th>
昵稱</th>
<th>
注冊時間</th>
<th>
帳戶資金</th>
<th>
查看</th>
<th>
編輯</th>
<th>
<input type="checkbox" id="delIds" name="delete" value='0' onclick="allCheck('userInformation','6')"></th></tr>
<logic:notEmpty name="users">
<logic:iterate id="userInfo" scope="request" name="users" indexId="index">
<tr>
<td>
<bean:write name="userInfo" property="userName" /></td>
<td>
<bean:write name="userInfo" property="nickname" /></td>
<td align="center">
<bean:write name="userInfo" property="regDate" /></td>
<td align="center">
<bean:write name="userInfo" property="money" /></td>
<td align="center">
<a href="module/user/manageUser.do?method=viewUser&id=<bean:write name="userInfo" property="userId" />">
查看</a></td>
<td align="center">
<a href="module/user/editUser.do?method=viewUser&id=<bean:write name="userInfo" property="userId" />">
編輯</a></td>
<td align="center">
<input type="checkbox" id="userId" name="userId" value="<bean:write name="userInfo" property="userId" />"></td></tr>
</logic:iterate>
</logic:notEmpty>
</table></td>
</tr>
<tr>
<td class="tborder"></td>
<td>
<page:page_tag formName="listUsers" action="module/user/manageUser.do?method=listUser"/></td>
<td class="tborder"></td></tr>
<tr><td colspan="3" class="tborder">
</td></tr></table>
</html:form>
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -