readPPT.jsp 913 B

1234567891011121314151617181920212223242526
  1. <%@ page language="java" contentType="text/html; charset=utf-8"
  2. pageEncoding="utf-8"%>
  3. <%
  4. String path = request.getContextPath();
  5. String basePath = request.getScheme() + "://"
  6. + request.getServerName() + ":" + request.getServerPort()
  7. + path + "/";
  8. %>
  9. <%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
  10. <%@page isELIgnored="false" %>
  11. <!DOCTYPE html>
  12. <html style="height:100%">
  13. <head>
  14. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  15. <script type="text/javascript">
  16. document.onmousedown = function(){return false;}
  17. </script>
  18. </head>
  19. <body style="height:100% ; width: 100%; overflow: hidden; margin: 0">
  20. <div style="height:100%;overflow: auto;text-align: center">
  21. <c:forEach begin="0" end="${param.pageSize}" varStatus="status">
  22. <img src='<%=basePath %>plm/project/getImage.action?path=${param.path}&page=${status.index}' /><br>
  23. </c:forEach>
  24. </div>
  25. </body>
  26. </html>