81,122
社区成员




<c:forEach begin="0" end="${fn:length(userlist)%4+1}" var="row">
<tr>
<c:forEach begin="0" end="3" var="col">
<td><html:multibox property="users" value="${userlist[4*row+col].id}" />${userlist[4*row+col].username}
</td>
</c:forEach>
</tr>
</c:forEach>