Hi,
I have been trying for about 4 hours to get something to work that would take about 4 minutes using scriplets! (and I can find no reference to this in my Core Jstl book).
Basically, I have an arraylist of sound objects in the session and when the user clicks one - it should play. The object only contains the filename so I need to prepend the path which is defined as a static variable in a class.
So I have:
<%
String path = UploadAction.PATH;
pageContext.setAttribute("path", path);
%><c:forEach var="sound" items="${Sounds}" varStatus="status">
<tr>
<td>a href= XXXXXX ><c:out value="${sound.fileName}"/></a></td>
</tr>
</c:forEach>where XXXXXX is the problem bit. I want to concatenate "/" + path + "${sound.fileName}" so that the href gets the full path and but only the filename is displayed.
Cheers, Andy
_________________________________________________________________
It's fast, it's easy and it's free. Get MSN Messenger today! http://www.msn.co.uk/messenger
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

