我应该怎么写一行:
<a href="User?id=<c:out value="${user.id}" />" >Profile</a>
是否正确? 这shoult给我像档案
我的背景:
<c:forEach items="${requestScope.users}" var="user">
<tr>
<td><c:out value="${user.login}" /></td>
<td><c:out value="${user.name}" /></td>
<td><c:out value="${user.lastname}" /></td>
<td><a href="User?id=<c:out value="${user.id}" />" >Profile</a></td>
</tr>
</c:forEach>