Skip to content

Instantly share code, notes, and snippets.

@benelog
Created January 13, 2012 08:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save benelog/1605094 to your computer and use it in GitHub Desktop.
Save benelog/1605094 to your computer and use it in GitHub Desktop.
JSP tags
<%@ page contentType="text/html; charset=UTF-8" session="false"%>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
<c:forEach var='customer' items='${customers}'>
Current customer is <c:out value='${customer}'/>
</c:forEach>
<c:if test="${list_yn == 'false'}">
not found
</c:if>
<c:if test="${fn:length(ftpAuthList) == 0}" >
empty
</c:if>
<fmt:formatDate value="${ftpAuth.request_time}" pattern="yyyy/MM/dd HH:mm:ss" />
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment