I'm try to create a dynamic link using JSTL (1.1 I think) to another
page. It didn't work so I wrote a test section and to my surprise
the browser didn't see any link AT ALL -- everything else worked
fine. Here's my test.
<tr>
<!-- add the table column headings -->
<c:forEach var="columnName" items="${name.columnNames}">
<c:choose>
<c:when test="${columnName == 'uname'}">
<td><a link=edit.jsp>test got</a></td>
</c:when>
<c:otherwise>
<td> <c:out value="${columnName}"/> </td>
</c:otherwise>
</c:choose>
</c:forEach>
</tr>
Could some point me in the correct direction?
Thanks.
Chris
Dancing Fingers - 19 Mar 2008 15:44 GMT
Okay, I'm an idiot. It's HREF=, not link=
> I'm try to create a dynamic link using JSTL (1.1 I think) to another
> page. It didn't work so I wrote a test section and to my surprise
[quoted text clipped - 18 lines]
> Thanks.
> Chris