67,549
社区成员




<%
ArrayList<Property> resultList = my_search.search(db);
request.setAttribute("resultList", resultList);
%>
...中间省略若干代码...
<table>
<tr>
<th></th>
<th>Image</th>
<th>Type</th>
<th>Suburb</th>
<th>Address</th>
<th></th>
</tr>
<c:forEach items="${resultList}" var="current">
<tr>
<td><input type="checkbox" value=""></td>
<td><img src=${current.image} width="120" /></td>
<td>${current.type}</td>
<td>${current.suburb}</td>
<td>${current.address}</td>
<td><a href="这里不知道怎么写...." />View</a></td>
</tr>
</c:forEach>
</table>
...后面还有若干代码省略掉....