81,122
社区成员




<table align="center" width="80%" cellspacing="20" cellpadding="0" border="2" bordercolor="#c529d6">
<c:forEach items="${customers}" var="customer">
<tr><td>
<table align='left' cellspacing="0" cellpadding="0" width="100%">
<caption>${customer.name}
<hr width="100%" size="1">
</caption>
<tr><td>Customer-id:</td><td>${customer.id}</td></tr>
<tr><td>Customer-name:</td><td>${customer.name}</td></tr>
<tr><td>Customer-username:</td><td>${customer.username}</td></tr>
<tr><td>Customer-password:</td><td>${customer.password}</td></tr>
<tr><td>Customer-email:</td><td>${customer.email}</td></tr>
<tr><td>Customer-address:</td><td>${customer.address}</td></tr>
<tr><td>Customer-phone:</td><td>${customer.phone}</td></tr>
<tr><td>Customer-postcode:</td><td>${customer.postcode}</td></tr>
</table>
</td></tr>
</c:forEach>
</table>