Author | Message |
---|---|
cbort
Posts: 95
|
Posted 14:13 May 21, 2011 |
Why would the statement: <c:url value="Questions" var="url"><c:param name="type" value="${tag}" /></c:url> not output any thing?
<td><c:forEach items="${question.tags}" var="tag"> |
cysun
Posts: 2935
|
Posted 16:21 May 21, 2011 |
I think if you specify the var attribute, the generated URL will be assigned to the variable instead being displayed directly. This would be useful if you want to use the URL in multiple places. If you just want to display the URL, try removing the var attribute. |