viewScanCode.jsp 419 B

1234567891011121314
  1. <%@ page contentType="text/html;charset=GBK"%>
  2. <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
  3. <br/>
  4. <div style="font-size:15px;font-weight:bold;width:100%;text-align:center">
  5. <c:choose>
  6. <c:when test="${isExistFile==true }">
  7. <img alt="${file.srcFile}" src="${file.codeImgPath}?time=${time}">
  8. </c:when>
  9. <c:otherwise>
  10. <font color="red">Îļþ²»´æÔÚ</font>
  11. </c:otherwise>
  12. </c:choose>
  13. </div>