administrator_main.jsp

来自「symbian s60 end to end socket程序源码 基于第二版」· JSP 代码 · 共 30 行

JSP
30
字号
<table class="selection_table">

<tr>
	<th>Username</th>
	<th>Group</th>
	<th>Mobile</th>
</tr>

<c:forEach var="user" items="${userBean.allUsers}">
	<c:choose>
		<c:when test="${i % 2 == 0}">
			<c:set var="row" value="even_row" />
		</c:when>
		<c:otherwise>
			<c:set var="row" value="odd_row" />
		</c:otherwise>
	</c:choose>

	<tr onClick="edit('${user.username}', ${user.groupId},
	                 '${user.mobile}', ${user.userId}, this)"
	    class="${row}">
		<td><c:out value="${user.username}" /></td>
		<td><c:out value="${user.groupname}" /></td>
		<td><c:out value="${user.mobile}" /></td>
	</tr>

	<c:set var="i" value="${i+1}" />
</c:forEach>

</table>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?