String « Taglib « JSP-Servlet Q&A





1. Concatenate strings in JSP EL?    stackoverflow.com

I have a List of beans, each of which has a property which itself is a List of email addresses.

<c:forEach items="${upcomingSchedule}" var="conf">
    <div class='scheduled' title="${conf.subject}" id="scheduled<c:out value="${conf.id}"/>">
  ...