Created
January 13, 2012 08:33
-
-
Save benelog/1605094 to your computer and use it in GitHub Desktop.
JSP tags
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<%@ page contentType="text/html; charset=UTF-8" session="false"%> | |
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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