demopage.jsp 788 B

123456789101112131415161718
  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()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
  6. %>
  7. <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
  8. <html style="height:100%">
  9. <head>
  10. <title>单据样例</title>
  11. <link rel="icon" href="<%=basePath %>resource/images/icon_title.png" type="image/x-icon"/>
  12. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
  13. </head>
  14. <body style="height:100% ; width: 100%; overflow: hidden; margin: 0">
  15. <iframe src="${url}" name="mainFrame" frameborder="0" marginheight="0" marginwidth="0" width="100%" height="100%"></iframe>
  16. </body>
  17. </html>