pictureview.jsp 382 B

12345678910111213141516
  1. <%@ page language="java" import="java.util.*" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
  2. <%@include file="/context/mytags.jsp"%>
  3. <!DOCTYPE html>
  4. <html>
  5. <head>
  6. <title></title>
  7. </head>
  8. <body>
  9. <c:if test="${empty dbpath }"> ${errormsg} </c:if>
  10. <c:if test="${empty errormsg }">
  11. <img alt="" src='${dbpath}' height="100%" width="100%">
  12. </c:if>
  13. </body>
  14. </html>