view.jsp 572 B

1234567891011121314
  1. <%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
  2. <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
  3. <% String basePath = request.getScheme()+ "://" + request.getServerName() + ":" +request.getServerPort() + request.getContextPath(); %>
  4. <% String contextPath = request.getContextPath() ;%>
  5. <% String id = request.getParameter("id"); %>
  6. <!DOCTYPE html>
  7. <html>
  8. <head>
  9. <script type="text/javascript" src="<%=basePath %>/js/jquery-1.8.0.min.js"></script>
  10. </head>
  11. <body>
  12. <img alt="" src="<%=id %>" width="800">
  13. </body>
  14. </html>