Jstl c in a href

时间:2013-01-11 08:42:54

标签: html jsp jstl href

我该怎么写行:

<a href="User?id=<c:out value="${user.id}" />" >Profile</a>

正确?它应该给我一些像个人资料

我的背景:

<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>

1 个答案:

答案 0 :(得分:5)

'内尝试",反之亦然

<a href="User?id=<c:out value='${user.id}' />" >Profile</a>