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